-
Notifications
You must be signed in to change notification settings - Fork 19
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: add GitHub issue and pull request templates
- Loading branch information
1 parent
6486b51
commit 718ff9b
Showing
4 changed files
with
103 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 @@ | ||
* @IamBlueSlime |
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,28 @@ | ||
--- | ||
name: 'Bug Report' | ||
about: "Something isn't working as expected." | ||
title: '' | ||
labels: | ||
- type:bug :beetle: | ||
assignees: '' | ||
--- | ||
|
||
## Bug Report | ||
|
||
## Current behavior | ||
|
||
<!-- Describe how the issue manifests. --> | ||
|
||
## Expected behavior | ||
|
||
<!-- A clear and concise description of what you expected to happen (or code). --> | ||
|
||
## Possible Solution | ||
|
||
<!--- Only if you have suggestions on a fix for the bug --> | ||
|
||
--- | ||
|
||
**Others:** | ||
|
||
<!-- Anything else relevant? Operating system version, IDE, package manager, ... --> |
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,26 @@ | ||
--- | ||
name: 'Feature Request' | ||
about: 'This is something we may need.' | ||
title: '' | ||
labels: | ||
- type:feature :rocket: | ||
assignees: '' | ||
--- | ||
|
||
## Feature Request | ||
|
||
## Is your feature request related to a problem? Please describe. | ||
|
||
<!-- A clear and concise description of what the problem is. Ex. I have an issue when [...] --> | ||
|
||
## Describe the solution you'd like | ||
|
||
<!-- A clear and concise description of what you want to happen. Add any considered drawbacks. --> | ||
|
||
## Teachability, Documentation, Adoption, Migration Strategy | ||
|
||
<!-- If you can, explain how users will be able to use this and possibly write out a version of the docs. Maybe a screenshot or design? --> | ||
|
||
## What is the motivation/use case for changing the behavior? | ||
|
||
<!-- Describe the motivation or the concrete use case. --> |
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,48 @@ | ||
## PR Checklist | ||
|
||
Please check if your PR fulfills the following requirements: | ||
|
||
``` | ||
- [ ] The commit message follows our guidelines | ||
- [ ] Tests for the changes have been added (if applicable) | ||
- [ ] Docs have been added / updated (if applicable) | ||
``` | ||
|
||
## PR Type | ||
|
||
What kind of change does this PR introduce? | ||
|
||
<!-- Please check the one that applies to this PR using "x". --> | ||
|
||
``` | ||
- [ ] Bugfix | ||
- [ ] Feature | ||
- [ ] Code style update (formatting, local variables) | ||
- [ ] Refactoring (no functional changes, no api changes) | ||
- [ ] Build related changes | ||
- [ ] CI related changes | ||
- [ ] Other... Please describe: | ||
``` | ||
|
||
## What is the current behavior | ||
|
||
<!-- Please describe the current behavior that you are modifying or link to a relevant issue. --> | ||
|
||
Issue Number fixed #n/a | ||
|
||
## What is the new behavior | ||
|
||
<!-- Please describe the new behavior that you are submitting. Code samples appreciated. --> | ||
|
||
## Does this PR introduce a breaking change | ||
|
||
<!-- Please check the one that applies to this PR using "x". --> | ||
|
||
``` | ||
- [ ] Yes | ||
- [ ] No | ||
``` | ||
|
||
<!-- If this PR contains a breaking change, please describe the impact and migration path for existing applications below. --> | ||
|
||
## Other information |