-
-
Notifications
You must be signed in to change notification settings - Fork 800
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[Feature] Adding Feature.md/BugFix.md Pull Request Template. (#343)
* Adding Feature.md Pull Request Template. * Create BugFix.md Pull Request Tempalte * Create CONTRIBUTING.md * Disabled Librepay since we've decided properly on OpenCollective
- Loading branch information
Showing
4 changed files
with
50 additions
and
1 deletion.
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
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,18 @@ | ||
--- | ||
name: Bug Fix | ||
about: Add a bug fix this project! | ||
title: "[Bug Fix] Short Form Title (50 chars or less.)" | ||
labels: bug | ||
assignees: 'WithoutPants, bnkai, Leopere' | ||
|
||
--- | ||
<!-- Please make sure to read https://github.com/stashapp/stash/docs/CONTRIBUTING.md and check that you understand and have followed it as best as possible --> | ||
<!-- Explain what your bugfix seeks to remedy in a short paragraph. --> | ||
# Scope | ||
|
||
<!-- Declare any issues by typing `fixes #1` or `closes #1` for example so that the automation can kick in when this is merged --> | ||
## Closes/Fixes Issues | ||
|
||
<!-- What have you tested specifically and what possible impacts/areas there are that may need retesting by others. --> | ||
## Other testing QA Notes | ||
|
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,17 @@ | ||
--- | ||
name: Feature Addition | ||
about: Add a feature to this project! | ||
title: "[Feature] Short Form Title (50 chars or less.)" | ||
labels: enhancement | ||
assignees: 'WithoutPants, bnkai, Leopere' | ||
|
||
--- | ||
<!-- Please make sure to read https://github.com/stashapp/stash/docs/CONTRIBUTING.md and check that you understand and have followed it as best as possible | ||
Explain what your feature does in a short paragraph. --> | ||
# Scope | ||
|
||
<!-- Declare any issues by typing `fixes #1` or `closes #1` for example so that the automation can kick in when this is merged --> | ||
## Closes/Fixes Issues | ||
|
||
<!-- What have you tested specifically and what possible impacts/areas there are that may need retesting by others. --> | ||
## Other testing QA Notes |
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 @@ | ||
|
||
## Technical Debt | ||
Please be sure to consider how heavily your contribution impacts the maintainability of the project long term, sometimes less is more. We don't want to merge collossal pull requests with hundreds of dependencies by a driveby contributor. | ||
|
||
## Contributor Checklist | ||
Please make sure that you've considered the following before you submit your Pull Requests as ready for merging. | ||
* I've run Code linters and [gofmt](https://golang.org/cmd/gofmt/) to make sure that my code is readable. | ||
* I have read through formerly submitted [pull requests](https://github.com/stashapp/stash/pulls) and [git issues](https://github.com/stashapp/stash/issues) to make sure that this contribution is required and isn't a duplicate. Also, so that I can manage to close any git Issues needing closed relating to this feature submission. | ||
* I commented adequately on my code with the expectation in mind that anyone else should be able to look at this code I've submitted and know exactly what's happening and what the expectations are. | ||
|
||
### Legal Agreements | ||
* I acknowledge that if applicable to me, submitting and subsequent acceptance of this Pull Request I, the code contributor of this Pull Request, agree and acknowledge my understanding that the new code license has now been updated to [AGPL](/LICENSE.md). I agree that all code before this Pull Request, which I've previously submitted, is now to be re-licensed under the new license AGPL and no longer the former MIT license. | ||
|
||
**In case you were unable to follow any of the above include an explanation as to why not in your Pull Request.** |