-
-
Notifications
You must be signed in to change notification settings - Fork 220
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
New templates for issues, features, & PRs (#502)
- Loading branch information
1 parent
d6c7a89
commit 276191c
Showing
5 changed files
with
46 additions
and
68 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,22 @@ | ||
name: Bug Report | ||
description: Create a report to help us improve. | ||
labels: ["bug"] | ||
body: | ||
- type: textarea | ||
attributes: | ||
label: Current Situation | ||
description: Discuss what the current issue is, how to reproduce, and link to any relevant prior discussion/context. | ||
validations: | ||
required: true | ||
- type: textarea | ||
attributes: | ||
label: Proposed Actions | ||
description: Describe what ought to be done, and why that will address the reasons for action mentioned above. | ||
validations: | ||
required: false | ||
- type: textarea | ||
attributes: | ||
label: System Information | ||
description: Versions for things such as... Django-dbbackup, Python, Django, Operating System, etc. | ||
validations: | ||
required: false |
This file was deleted.
Oops, something went wrong.
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,16 @@ | ||
name: Feature request | ||
description: Suggest an idea for this project. | ||
labels: ["feature-request"] | ||
body: | ||
- type: textarea | ||
attributes: | ||
label: Feature description | ||
description: Describe what the feature is, why it is needed, and link any relevant prior discussion/context. | ||
validations: | ||
required: true | ||
- type: textarea | ||
attributes: | ||
label: Alternatives options | ||
description: Describe any alternatives to this feature, and why they were not chosen. | ||
validations: | ||
required: false |
This file was deleted.
Oops, something went wrong.
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 |
---|---|---|
@@ -1,15 +1,14 @@ | ||
# Type of PR (feature, enhancement, bug fix, etc.) | ||
|
||
## Description | ||
|
||
Please include a summary of the change and which issue is fixed. | ||
|
||
Fixes # (issue) | ||
<!-- A summary of the changes. --> | ||
|
||
## Why should this be added | ||
## Checklist | ||
|
||
Explain value. | ||
Please update this checklist as you complete each item: | ||
|
||
## Checklist | ||
- [ ] Tests have been developed for bug fixes or new functionality. | ||
- [ ] The changelog has been updated, if necessary. | ||
- [ ] Documentation has been updated, if necessary. | ||
- [ ] GitHub Issues closed by this PR have been linked. | ||
|
||
- [ ] Documentation has been added or amended for this feature / update | ||
<sub>By submitting this pull request I agree that all contributions comply with this project's open source license(s).</sub> |