Skip to content
This repository was archived by the owner on Jan 19, 2025. It is now read-only.

Commit 2a41e8b

Browse files
authored
chore: add generic issue templates back in (#687)
* chore: add generic bug report template * Update bug_report.yml * Create feature_request.md * Rename feature_request.md to feature_request.yml * Update feature_request.yml * style: apply automatic fixes of linters Co-authored-by: lars-reimann <[email protected]>
1 parent 88e7a64 commit 2a41e8b

File tree

2 files changed

+94
-0
lines changed

2 files changed

+94
-0
lines changed
Lines changed: 49 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,49 @@
1+
name: 'Bug report'
2+
description: 'Report that something does not work as expected'
3+
labels: ['bug']
4+
5+
body:
6+
- type: textarea
7+
id: description
8+
attributes:
9+
label: Describe the bug
10+
description: A clear and concise description of the bug.
11+
validations:
12+
required: true
13+
14+
- type: textarea
15+
id: reproduction
16+
attributes:
17+
label: 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: true
26+
27+
- type: textarea
28+
id: expected-behavior
29+
attributes:
30+
label: Expected behavior
31+
description: A clear and concise description of what you expected to happen.
32+
validations:
33+
required: true
34+
35+
- type: textarea
36+
id: screenshots
37+
attributes:
38+
label: Screenshots (optional)
39+
description: You can attach images by clicking this area to highlight it and then dragging files in.
40+
validations:
41+
required: false
42+
43+
- type: textarea
44+
id: additional-context
45+
attributes:
46+
label: Additional Context (optional)
47+
description: Do you have anything else to add?
48+
validations:
49+
required: false
Lines changed: 45 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,45 @@
1+
name: 'Feature request'
2+
description: 'Suggest an idea for this project'
3+
labels: ['enhancement']
4+
5+
body:
6+
- type: textarea
7+
id: related-problem
8+
attributes:
9+
label: Is your feature request related to a problem?
10+
description: A clear and concise description of what the problem is.
11+
placeholder: "Example: I'm always frustrated when [...]"
12+
validations:
13+
required: true
14+
15+
- type: textarea
16+
id: solution
17+
attributes:
18+
label: Desired solution
19+
description: A clear and concise description of what you want to happen.
20+
validations:
21+
required: true
22+
23+
- type: textarea
24+
id: alternatives
25+
attributes:
26+
label: Possible alternatives (optional)
27+
description: A clear and concise description of any alternative solutions or features you've considered.
28+
validations:
29+
required: false
30+
31+
- type: textarea
32+
id: screenshots
33+
attributes:
34+
label: Screenshots (optional)
35+
description: You can attach images by clicking this area to highlight it and then dragging files in.
36+
validations:
37+
required: false
38+
39+
- type: textarea
40+
id: additional-context
41+
attributes:
42+
label: Additional Context (optional)
43+
description: Do you have anything else to add?
44+
validations:
45+
required: false

0 commit comments

Comments
 (0)