Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
29 changes: 29 additions & 0 deletions .github/ISSUE_TEMPLATE/bug_report.md
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.
5 changes: 5 additions & 0 deletions .github/ISSUE_TEMPLATE/config.yml
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
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

medium

The url for a contact link must be a full URL, including the protocol (e.g., https://). The current relative path /CONTRIBUTING.md will resolve to https://github.com/CONTRIBUTING.md, which is a broken link. Please update this to the full URL of the CONTRIBUTING.md file in this repository's default branch. For example: https://github.com/<owner>/<repo>/blob/main/CONTRIBUTING.md.

about: Read how to contribute before opening an issue.
15 changes: 15 additions & 0 deletions .github/ISSUE_TEMPLATE/feature_request.md
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.
21 changes: 21 additions & 0 deletions .github/ISSUE_TEMPLATE/task.md
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
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

medium

The labels documentation and low-priority might be too restrictive for this template. The template is for any "Small task or documentation update," but a task might not be related to documentation or could be of higher priority. To allow for more flexibility and to maintain consistency with the other issue templates, consider using a more generic task label and adding needs-triage so that priority and other relevant labels can be assigned during the triage process.

Suggested change
labels: documentation, low-priority
labels: task, needs-triage

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.
Loading