Skip to content

Commit 2e9cea9

Browse files
committed
Add issue templates for bugs, features, questions
1 parent d44edd0 commit 2e9cea9

File tree

3 files changed

+87
-0
lines changed

3 files changed

+87
-0
lines changed

.github/ISSUE_TEMPLATE/bug.yml

Lines changed: 40 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,40 @@
1+
name: Bug
2+
description: Report a bug.
3+
labels: ['bug']
4+
body:
5+
- type: textarea
6+
id: description
7+
attributes:
8+
label: Bug Description
9+
description: A clear and concise description of what the bug is.
10+
placeholder: Describe the bug here.
11+
validations:
12+
required: true
13+
- type: textarea
14+
id: steps
15+
attributes:
16+
label: Steps to Reproduce
17+
description: The steps to reproduce the behavior.
18+
placeholder: Describe the steps to reproduce the bug here.
19+
validations:
20+
required: true
21+
- type: checkboxes
22+
id: duplicate
23+
attributes:
24+
label: Not a duplicate
25+
description: Check this box if you have confirmed that this bug has not been reported before.
26+
options:
27+
- label: This is not a duplicate
28+
required: true
29+
- type: input
30+
id: platform
31+
attributes:
32+
label: Platform
33+
description: The platform where the bug was found.
34+
placeholder: On which browser, OS, or device did you find the bug?
35+
- type: textarea
36+
id: additional
37+
attributes:
38+
label: Additional Information
39+
description: Any additional information that may help in resolving the bug.
40+
placeholder: Add any other context about the bug or ideas on how to resolve it.

.github/ISSUE_TEMPLATE/feature.yml

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
name: Feature
2+
description: Request a feature.
3+
labels: ['enhancement']
4+
body:
5+
- type: textarea
6+
id: description
7+
attributes:
8+
label: Feature Description
9+
description: A clear and concise description of what the wanted feature is.
10+
placeholder: Describe the feature you want to see implemented.
11+
validations:
12+
required: true
13+
- type: checkboxes
14+
id: duplicate
15+
attributes:
16+
label: Not a duplicate
17+
description: Check this box if you have confirmed that this feature has not been requested before.
18+
options:
19+
- label: This is not a duplicate
20+
required: true
21+
- type: checkboxes
22+
id: want-to-implement
23+
attributes:
24+
label: Want to Implement
25+
description: Check this box if you are willing to implement the feature.
26+
options:
27+
- label: I want to implement this feature

.github/ISSUE_TEMPLATE/questions.yml

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
name: Question
2+
description: Ask a question.
3+
labels: ['question']
4+
body:
5+
- type: textarea
6+
id: question
7+
attributes:
8+
label: Question
9+
description: The question.
10+
placeholder: Ask your question here.
11+
validations:
12+
required: true
13+
- type: checkboxes
14+
id: duplicate
15+
attributes:
16+
label: Not a duplicate
17+
description: Check this box if you have confirmed that this question has not been asked before.
18+
options:
19+
- label: This is not a duplicate
20+
required: true

0 commit comments

Comments
 (0)