-
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.
- Loading branch information
Showing
4 changed files
with
62 additions
and
0 deletions.
There are no files selected for viewing
Validating CODEOWNERS rules …
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 @@ | ||
* @echang594 |
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 @@ | ||
Describe the expected behavior, e.g. "Should X, Y, and Z." |
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,46 @@ | ||
# Info | ||
|
||
Closes **[ISSUE NUMBER]**. (If there is no issue for this pull request yet, please create one or | ||
delete this line if the pull request is for a very minor tweak). | ||
|
||
# Description | ||
|
||
What changes did you make? List all distinct problems that this PR addresses. Explain any relevant | ||
motivation or context. | ||
|
||
[description] | ||
|
||
## Changes | ||
|
||
- [Fill in here] | ||
|
||
# Type of Change | ||
|
||
- [ ] Patch (non-breaking change/bugfix) | ||
- [ ] Minor (non-breaking change which adds functionality) | ||
- [ ] Major (fix or feature that would cause existing functionality to not work as | ||
expected) | ||
- [ ] Documentation (A change to a README/description) | ||
- [ ] Continuous Integration/DevOps Change (Related to deployment steps, continuous integration | ||
workflows, linting, etc.) | ||
- [ ] Other: (Fill In) <!-- Edit this type of change if you select this --> | ||
|
||
If you've selected Patch, Minor, or Major as your change type, **make sure to bump the version before merging in `package.json`!** | ||
# Testing | ||
|
||
I have tested that my changes fully resolve the linked issue ... | ||
|
||
- [ ] locally. | ||
- [ ] on the testing API/testing database. | ||
- [ ] with appropriate Postman routes. Screenshots are included below. | ||
|
||
# Checklist | ||
|
||
- [ ] I have performed a self-review of my own code. | ||
- [ ] I have followed the style guidelines of this project. | ||
- [ ] I have appropriately edited the API version in the `package.json` file. | ||
- [ ] My changes produce no new warnings. | ||
|
||
# Screenshots | ||
|
||
Please include a screenshot of your Postman testing passing successfully. |
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 @@ | ||
name: Auto Comment on PRs | ||
on: pull_request | ||
jobs: | ||
run: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: wow-actions/auto-comment@v1 | ||
with: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
pullRequestOpened: | | ||
Thanks for contributing! | ||
If you've made changes to the API's functionality, please make sure to bump the package | ||
version—see [this guide to semantic versioning](https://semver.org/) for details—and | ||
document those changes as appropriate. |