Sam Denty
commited on
fix: add issue templates (#2)
Browse files
.github/ISSUE_TEMPLATE/bug_report.yml
ADDED
@@ -0,0 +1,31 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
---
|
2 |
+
name: Bug Report
|
3 |
+
about: Something not working? Let us know!
|
4 |
+
title: ''
|
5 |
+
labels: 'Status: Triage, Type: Bug'
|
6 |
+
assignees: ''
|
7 |
+
|
8 |
+
---
|
9 |
+
|
10 |
+
### **Description of Bug**
|
11 |
+
Provide a concise description of your bug and your project link (if applicable).
|
12 |
+
|
13 |
+
|
14 |
+
### **Steps to Reproduce**
|
15 |
+
|
16 |
+
1. Go to '...'
|
17 |
+
2. Click on '....'
|
18 |
+
3. Scroll down to '....'
|
19 |
+
4. See error
|
20 |
+
|
21 |
+
|
22 |
+
### **Expected Behavior**
|
23 |
+
A clear and concise description of what you expected to happen.
|
24 |
+
|
25 |
+
|
26 |
+
### **Screenshots/Screencast**
|
27 |
+
If applicable, add screenshots to help explain your problem.
|
28 |
+
|
29 |
+
|
30 |
+
**Additional Context/Questions**
|
31 |
+
Add any other context or questions regarding this bug.
|
.github/ISSUE_TEMPLATE/feature_request.yml
ADDED
@@ -0,0 +1,23 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
---
|
2 |
+
name: Feature Request
|
3 |
+
about: Got a suggestion for a feature request? Let us know!
|
4 |
+
title: ''
|
5 |
+
labels: 'Status: Triage, Type: Feature Request'
|
6 |
+
assignees: ''
|
7 |
+
|
8 |
+
---
|
9 |
+
|
10 |
+
### **Is your feature request related to a problem? Please describe.**
|
11 |
+
A clear and concise description of what the problem is. Ex. I'm always frustrated when [...]
|
12 |
+
|
13 |
+
|
14 |
+
### **Describe the solution you'd like**
|
15 |
+
A clear and concise description of what you want to happen.
|
16 |
+
|
17 |
+
|
18 |
+
### **Describe alternatives you've considered**
|
19 |
+
A clear and concise description of any alternative solutions or features you've considered.
|
20 |
+
|
21 |
+
|
22 |
+
### **Additional context**
|
23 |
+
Add any context or screenshots about the feature request here.
|