Skip to content

Commit b2e54b2

Browse files
authored
docs: upgrade issue templates to form format.
This closes #518.
1 parent 95ec197 commit b2e54b2

File tree

6 files changed

+82
-53
lines changed

6 files changed

+82
-53
lines changed

.github/ISSUE_TEMPLATE/bug_report.md

Lines changed: 0 additions & 27 deletions
This file was deleted.
Lines changed: 44 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,44 @@
1+
name: Bug Report
2+
description: "Create a report to help fix a problem."
3+
title: "[bug]: "
4+
labels: ["bug"]
5+
body:
6+
- type: markdown
7+
attributes:
8+
value: |
9+
Thanks for taking the time to fill out this bug report!
10+
- type: textarea
11+
id: description
12+
attributes:
13+
label: Describe the bug
14+
description: A clear and concise description of what the bug is.
15+
validations:
16+
required: true
17+
- type: textarea
18+
id: reproduce
19+
attributes:
20+
label: To reproduce
21+
description: Steps to reproduce the behaviour
22+
placeholder: |
23+
Steps to reproduce the behavior:
24+
1. Go to '...'
25+
2. Click on '....'
26+
3. Scroll down to '....'
27+
4. See error
28+
validations:
29+
required: true
30+
- type: textarea
31+
id: expected
32+
attributes:
33+
label: Expected behavior
34+
description: A clear and concise description of what you expected to happen.
35+
- type: textarea
36+
id: screenshots
37+
attributes:
38+
label: Screenshots
39+
description: If applicable, add screenshots to help explain your problem.
40+
- type: textarea
41+
id: additional
42+
attributes:
43+
label: Additional Context
44+
description: Please add any other infos that could be useful.

.github/ISSUE_TEMPLATE/documentation.md

Lines changed: 0 additions & 10 deletions
This file was deleted.
Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
name: Documentation
2+
description: "Suggest a topic that is not correctly documented (or not documented at all)"
3+
title: "[docs]: "
4+
labels: ["documentation"]
5+
body:
6+
- type: textarea
7+
id: description
8+
attributes:
9+
label: Describe the missing piece of documentation
10+
description: Describe what you miss in the docs (or what is wrong).
11+
validations:
12+
required: true

.github/ISSUE_TEMPLATE/feature_request.md

Lines changed: 0 additions & 16 deletions
This file was deleted.
Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
name: Feature Request
2+
description: "Suggest a new feature for this project."
3+
title: "[feature]: "
4+
labels: ["enhancement"]
5+
body:
6+
- type: markdown
7+
attributes:
8+
value: |
9+
Thanks for taking the time to fill out this feature request!
10+
- type: textarea
11+
id: description
12+
attributes:
13+
label: Is your feature request related to a problem? Please describe.
14+
description: A clear and concise description of what the problem is. Ex. I'm always frustrated when [...]
15+
- type: textarea
16+
id: solution
17+
attributes:
18+
label: Describe the solution you would like
19+
description: A clear and concise description of what you want to happen.
20+
validations:
21+
required: true
22+
- type: textarea
23+
id: additional
24+
attributes:
25+
label: Additional Context
26+
description: Please add any other infos that could be useful.

0 commit comments

Comments
 (0)