-
-
Notifications
You must be signed in to change notification settings - Fork 71
Add GitHub Issue Templates (Bug, Feature, Task) #871
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. Weβll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,29 @@ | ||
| --- | ||
| name: Bug report | ||
| about: Report a bug so we can fix it. | ||
| labels: bug, needs-triage | ||
| assignees: '' | ||
| --- | ||
|
|
||
| **Describe the bug** | ||
| A clear and concise description of what the bug is. | ||
|
|
||
| **To Reproduce** | ||
| Steps to reproduce the behavior: | ||
| 1. Go to '...' | ||
| 2. Click on '...' | ||
| 3. See error | ||
|
|
||
| **Expected behavior** | ||
| What you expected to happen. | ||
|
|
||
| **Screenshots** | ||
| If applicable, add screenshots to help explain your problem. | ||
|
|
||
| **Environment (please complete the following information):** | ||
| - OS: e.g. Windows 10 | ||
| - Browser: e.g. Chrome 140 | ||
| - Version: e.g. v1.2.3 | ||
|
|
||
| **Additional context** | ||
| Add any other context about the problem here. |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,5 @@ | ||
| blank_issues_enabled: false | ||
| contact_links: | ||
| - name: Contribution guide | ||
| url: /CONTRIBUTING.md | ||
| about: Read how to contribute before opening an issue. | ||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,15 @@ | ||
| --- | ||
| name: Feature request | ||
| about: Suggest an improvement or new feature. | ||
| labels: enhancement, needs-triage | ||
| assignees: '' | ||
| --- | ||
|
|
||
| **Is your feature request related to a problem? Please describe.** | ||
|
|
||
| **Describe the solution you'd like** | ||
|
|
||
| **Describe alternatives you've considered** | ||
|
|
||
| **Additional context** | ||
| Screenshots, example UX, or links to related repos. |
| Original file line number | Diff line number | Diff line change | ||||
|---|---|---|---|---|---|---|
| @@ -0,0 +1,21 @@ | ||||||
| --- | ||||||
| name: Task | ||||||
| about: Small task or documentation update. | ||||||
| labels: documentation, low-priority | ||||||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. The labels
Suggested change
|
||||||
| assignees: '' | ||||||
| --- | ||||||
|
|
||||||
| **Task summary** | ||||||
| Short description of the task. | ||||||
|
|
||||||
| **Steps to complete** | ||||||
| 1. | ||||||
| 2. | ||||||
| 3. | ||||||
|
|
||||||
| **Acceptance criteria** | ||||||
| - [ ] Criterion 1 | ||||||
| - [ ] Criterion 2 | ||||||
|
|
||||||
| **Notes** | ||||||
| Any extra notes, links, or resources. | ||||||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The
urlfor a contact link must be a full URL, including the protocol (e.g.,https://). The current relative path/CONTRIBUTING.mdwill resolve tohttps://github.com/CONTRIBUTING.md, which is a broken link. Please update this to the full URL of theCONTRIBUTING.mdfile in this repository's default branch. For example:https://github.com/<owner>/<repo>/blob/main/CONTRIBUTING.md.