-
Notifications
You must be signed in to change notification settings - Fork 140
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Issue and pull request template added
- Loading branch information
1 parent
0140a86
commit 1b25090
Showing
3 changed files
with
58 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,18 @@ | ||
name: 🐛 Bug | ||
description: Report an issue to help improve the project. | ||
labels: ['bug'] | ||
body: | ||
- type: textarea | ||
id: description | ||
attributes: | ||
label: Description | ||
description: A brief description of the question or issue, also include what you tried and what didn't work | ||
validations: | ||
required: true | ||
- type: textarea | ||
id: screenshots | ||
attributes: | ||
label: Screenshots | ||
description: Please add screenshots if applicable | ||
validations: | ||
required: false |
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 @@ | ||
name: 💡 General Feature Request | ||
description: Have a new idea/feature? Please suggest! | ||
title: 'Feature: ' | ||
labels: ['feature'] | ||
body: | ||
- type: textarea | ||
id: description | ||
attributes: | ||
label: Description | ||
description: Description of the enhancement you propose, also include what you tried and what worked. | ||
validations: | ||
required: true | ||
- type: textarea | ||
id: screenshots | ||
attributes: | ||
label: Screenshots | ||
description: Screenshots if applicable | ||
validations: | ||
required: false |
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,21 @@ | ||
### Description | ||
<!-- Provide a brief description of the changes in this pull request --> | ||
|
||
### Proposed Changes | ||
<!-- List the proposed changes introduced by this pull request --> | ||
|
||
## Fixes #(issue_no) | ||
|
||
Replace `issue_no` with the issue number which is fixed in this PR | ||
|
||
## Screenshots | ||
|
||
<!-- If applicable, add screenshots or images demonstrating the changes made --> | ||
|
||
## Checklist | ||
|
||
<!-- Mark the completed tasks with [x] --> | ||
- [ ] Tests have been added or updated to cover the changes | ||
- [ ] Documentation has been updated to reflect the changes | ||
- [ ] Code follows the established coding style guidelines | ||
- [ ] All tests are passing |