Skip to content

Commit 61d13ba

Browse files
authored
β˜• CHORE: add issue forms (#1509)
* β˜• CHORE: issue form for bugs * β˜• CHORE: add issue form for features
1 parent fadbab9 commit 61d13ba

File tree

4 files changed

+110
-50
lines changed

4 files changed

+110
-50
lines changed

β€Ž.github/ISSUE_TEMPLATE/bug_report.mdβ€Ž

Lines changed: 0 additions & 35 deletions
This file was deleted.
Lines changed: 74 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,74 @@
1+
name: Report a Bug
2+
description: Found a bug? Let us know!
3+
labels: 'bug'
4+
body:
5+
# bug description
6+
- type: textarea
7+
id: descrption
8+
attributes:
9+
label: Describe The Bug
10+
description: "A clear and concise description of what the bug is."
11+
validations:
12+
required: true
13+
# steps to reproduce
14+
- type: textarea
15+
id: steps
16+
attributes:
17+
label: Steps To Reproduce
18+
description: "Steps to reproduce the behavior."
19+
placeholder: |
20+
1. Go to '...'
21+
2. Click on '....'
22+
3. Scroll down to '....'
23+
4. See error
24+
validations:
25+
required: false
26+
# expected behavior
27+
- type: textarea
28+
id: expected
29+
attributes:
30+
label: Expected Behavior
31+
description: "A clear and concise description of what you expected to happen."
32+
validations:
33+
required: false
34+
# screenshots
35+
- type: textarea
36+
id: screenshots
37+
attributes:
38+
label: Screenshots
39+
description: "If applicable, add screenshots to help explain your problem."
40+
validations:
41+
required: false
42+
# desktop
43+
- type: textarea
44+
id: desktop
45+
attributes:
46+
label: Desktop
47+
description: "Please complete the following information."
48+
placeholder: |
49+
- OS: [e.g. iOS]
50+
- Browser [e.g. chrome, safari]
51+
- Version [e.g. 22]
52+
validations:
53+
required: false
54+
# smartphone
55+
- type: textarea
56+
id: mobile
57+
attributes:
58+
label: Smartphone
59+
description: "Please complete the following information."
60+
placeholder: |
61+
- Device: [e.g. iPhone6]
62+
- OS: [e.g. iOS8.1]
63+
- Browser [e.g. stock browser, safari]
64+
- Version [e.g. 22]
65+
validations:
66+
required: false
67+
# additional context
68+
- type: textarea
69+
id: additional-context
70+
attributes:
71+
label: Additional Context
72+
description: "Add any other context about the problem here."
73+
validations:
74+
required: false

β€Ž.github/ISSUE_TEMPLATE/feature_request.mdβ€Ž

Lines changed: 0 additions & 15 deletions
This file was deleted.
Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
1+
name: Feature Request
2+
description: Have a feature request? Let us know!
3+
labels: 'feature request'
4+
body:
5+
# problem
6+
- type: textarea
7+
id: problem
8+
attributes:
9+
label: Is your feature request related to a problem? Please describe.
10+
description: "A clear and concise description of what the problem is. Ex. I'm always frustrated when [...]"
11+
validations:
12+
required: true
13+
# solution
14+
- type: textarea
15+
id: solution
16+
attributes:
17+
label: Describe the solution you'd like.
18+
description: "A clear and concise description of what you want to happen."
19+
validations:
20+
required: true
21+
# alternative
22+
- type: textarea
23+
id: alternative
24+
attributes:
25+
label: Describe alternatives you've considered.
26+
description: "A clear and concise description of any alternative solutions or features you've considered."
27+
validations:
28+
required: true
29+
# additional context
30+
- type: textarea
31+
id: additional-context
32+
attributes:
33+
label: Additional Context
34+
description: "Add any other context about the problem here."
35+
validations:
36+
required: false

0 commit comments

Comments
Β (0)