forked from foundation-model-stack/fms-hf-tuning
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add PR/Issue templates (foundation-model-stack#65)
* Add PR template Signed-off-by: ted chang <[email protected]> * Add Makefile Signed-off-by: ted chang <[email protected]> * Update .github/ISSUE_TEMPLATE/user_story.md Co-authored-by: Sukriti Sharma <[email protected]> Signed-off-by: ted chang <[email protected]> * Update .github/pull_request_template.md Co-authored-by: Sukriti Sharma <[email protected]> Signed-off-by: ted chang <[email protected]> --------- Signed-off-by: ted chang <[email protected]> Co-authored-by: Sukriti Sharma <[email protected]>
- Loading branch information
Showing
6 changed files
with
114 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
--- | ||
name: Bug report | ||
about: Create a report to help us improve | ||
title: "" | ||
labels: "" | ||
assignees: "" | ||
--- | ||
|
||
## Describe the bug | ||
|
||
A clear and concise description of what the bug is. | ||
|
||
## Platform | ||
|
||
Please provide details about the environment you are using, including the following: | ||
|
||
- Interpreter version: | ||
- Library version: | ||
|
||
## Sample Code | ||
|
||
Please include a minimal sample of the code that will (if possible) reproduce the bug in isolation | ||
|
||
## Expected behavior | ||
|
||
A clear and concise description of what you expected to happen. | ||
|
||
## Observed behavior | ||
|
||
What you see happening (error messages, stack traces, etc...) | ||
|
||
## Additional context | ||
|
||
Add any other context about the problem here. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
--- | ||
name: Feature request | ||
about: Suggest an idea for this project | ||
title: "" | ||
labels: "" | ||
assignees: "" | ||
--- | ||
|
||
## Is your feature request related to a problem? Please describe. | ||
|
||
A clear and concise description of what the problem is. Ex. I'm always frustrated when [...] | ||
|
||
## Describe the solution you'd like | ||
|
||
A clear and concise description of what you want to happen. | ||
|
||
## Describe alternatives you've considered | ||
|
||
A clear and concise description of any alternative solutions or features you've considered. | ||
|
||
## Additional context | ||
|
||
Add any other context about the feature request here. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
--- | ||
name: User story | ||
about: A user-oriented story describing a piece of work to do | ||
title: "" | ||
labels: "" | ||
assignees: "" | ||
--- | ||
|
||
## Description | ||
|
||
As a <user type>, I want to <do something>, so that I can <accomplish something> | ||
|
||
## Discussion | ||
|
||
Provide detailed discussion here | ||
|
||
## Acceptance Criteria | ||
|
||
<!-- Remove any that don't apply --> | ||
|
||
- [ ] Unit tests cover new/changed code | ||
- [ ] Examples build against new/changed code | ||
- [ ] READMEs are updated |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
<!-- Thank you for the contribution! --> | ||
|
||
### Description of the change | ||
|
||
<!-- Please summarize the changes --> | ||
|
||
### Related issue number | ||
|
||
<!-- For example: "Closes #1234" --> | ||
|
||
### How to verify the PR | ||
|
||
<!-- Please provide instruction or screenshots on how to verify the PR.--> | ||
|
||
### Was the PR tested | ||
|
||
<!-- Describe how PR was tested --> | ||
- [ ] I have added >=1 unit test(s) for every new method I have added. | ||
- [ ] I have ensured all unit tests pass |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
# Run unit tests | ||
.PHONY: test | ||
test: fmt lint | ||
tox -e py | ||
|
||
# Format python code | ||
.PHONY: fmt | ||
fmt: | ||
tox -e fmt | ||
|
||
# Run pylint to check code | ||
..PHONY: lint | ||
lint: | ||
tox -e lint |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters