Skip to content

Commit 8df93f2

Browse files
committed
init project
0 parents  commit 8df93f2

File tree

11 files changed

+187
-0
lines changed

11 files changed

+187
-0
lines changed

.DS_Store

6 KB
Binary file not shown.
Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
---
2+
name: "Bug Report"
3+
about: "You found something that is not working. Report it so that it can be fixed. 👷‍"
4+
title: "Fix: "
5+
labels: "type : bug"
6+
---
7+
8+
## Issue
9+
10+
Describe the issue you are facing. Show us the implementation: screenshots, GIFs, etc.
11+
12+
## Expected
13+
14+
Describe what should be the correct behavior.
15+
16+
## Steps to reproduce
17+
18+
1.
19+
2.
20+
3.
Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
---
2+
name: "Chore"
3+
about: "Open a chore issue for a minor update."
4+
title: "Update "
5+
labels: "type : chore"
6+
---
7+
8+
## Why
9+
10+
Describe the update in detail and why it is needed.
11+
12+
## Who Benefits?
13+
14+
Describe who will be the beneficiaries e.g. everyone, specific chapters, clients...
Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
---
2+
name: "Feature"
3+
about: "Open a feature issue to add new functionalities."
4+
title: "Add "
5+
labels: "type : feature"
6+
---
7+
8+
## Why
9+
10+
Describe the big picture of the feature and why it is needed.
11+
12+
## Who Benefits?
13+
14+
Describe who will be the beneficiaries e.g. everyone, specific chapters, clients...
Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
---
2+
name: "Story"
3+
about: "Open a feature story"
4+
title: "[Type] As a user, I can "
5+
labels: "type : feature"
6+
---
7+
8+
## Why
9+
10+
Describe the idea of the user story as in what the motive of the user story is.
11+
12+
## Acceptance Criteria
13+
14+
List down how the user story will be tested and what criteria are necessary for the user story to be accepted.
15+
16+
## Design
17+
18+
(Optional) Add design screenshots or Figma links for UI/UX-related stories.
19+
20+
## Resources
21+
22+
(Optional) Add useful resources such as links to documentation, implementation ideas, or best practices.

.github/PULL_REQUEST_TEMPLATE.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
- Close #
2+
3+
## What happened 👀
4+
5+
Provide a description of the **changes** this pull request brings to the codebase. Additionally, when the pull request is still being worked on, a checklist of the planned changes is welcome to track progress.
6+
7+
## Insight 📝
8+
9+
Describe in detail why this solution is the most appropriate, which solution you tried but did not go with, and how to test the changes. References to relevant documentation are welcome as well.
10+
11+
## Proof Of Work 📹
12+
13+
Show us the implementation: screenshots, GIFs, etc.
Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
Link to the milestone on Github e.g. https://github.com/nimblehq/git-templates/milestone/41?closed=1
2+
or
3+
Link to the project management tool for the release
4+
5+
## Features
6+
7+
Provide the ID and title of the issue in the section for each type (feature, chore and bug). The link is optional.
8+
9+
- [sc-1234] As a user, I can log in
10+
or
11+
- [[sc-1234](https://app.shortcut.com/nimblehq/story/1234)] As a user, I can log in
12+
13+
## Chores
14+
- Same structure as in ## Feature
15+
16+
## Bugs
17+
- Same structure as in ## Feature

.github/wiki/.keep

Whitespace-only changes.

.github/workflows/publish_wiki.yml

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
# For setup instruction, refer to https://github.com/nimblehq/github-actions-workflows/blob/main/.github/workflows/publish_wiki.yml
2+
name: Publish Wiki
3+
4+
on:
5+
push:
6+
paths:
7+
- .github/wiki/**
8+
branches:
9+
- develop
10+
11+
jobs:
12+
publish:
13+
name: Publish Wiki
14+
uses: nimblehq/github-actions-workflows/.github/workflows/[email protected]
15+
with:
16+
USER_NAME: github-wiki-workflow
17+
USER_EMAIL: ${{ secrets.GH_EMAIL }}
18+
secrets:
19+
USER_TOKEN: ${{ secrets.GH_TOKEN }}

.gitignore

Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
1+
*.gem
2+
*.rbc
3+
/.config
4+
/.idea
5+
/coverage/
6+
/InstalledFiles
7+
/node_modules
8+
/pkg/
9+
/spec/reports/
10+
/spec/examples.txt
11+
/test/tmp/
12+
/test/version_tmp/
13+
/tmp/
14+
15+
# Used by dotenv library to load environment variables.
16+
# .env
17+
18+
## Documentation cache and generated files:
19+
/.yardoc/
20+
/_yardoc/
21+
/doc/
22+
/rdoc/
23+
24+
## Environment normalization:
25+
/.bundle/
26+
/vendor/bundle
27+
/lib/bundler/man/
28+
29+
# for a library or gem, you might want to ignore these files since the code is
30+
# intended to run in multiple environments; otherwise, check them in:
31+
# Gemfile.lock
32+
# .ruby-version
33+
# .ruby-gemset
34+
35+
# unless supporting rvm < 1.11.0 or doing something fancy, ignore this:
36+
.rvmrc

0 commit comments

Comments
 (0)