Skip to content

Commit bd827e6

Browse files
Create bug_report.yml
Bug report template with dropdown areas, structured fields for description, expected/actual behavior, reproduction steps
1 parent 8ec4456 commit bd827e6

1 file changed

Lines changed: 74 additions & 0 deletions

File tree

Lines changed: 74 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,74 @@
1+
name: Bug Report
2+
description: Report a bug or error in the documentation or code examples
3+
title: "[Bug]: "
4+
labels: ["bug"]
5+
assignees:
6+
- POWDER-RANGER
7+
8+
body:
9+
- type: markdown
10+
attributes:
11+
value: |
12+
Thanks for taking the time to report a bug! Please fill out the form below.
13+
14+
- type: dropdown
15+
id: area
16+
attributes:
17+
label: Area
18+
description: Which part of the project is affected?
19+
options:
20+
- Documentation
21+
- Code Examples
22+
- Technical Analysis
23+
- Website/GitHub Pages
24+
- Other
25+
validations:
26+
required: true
27+
28+
- type: textarea
29+
id: description
30+
attributes:
31+
label: Bug Description
32+
description: A clear description of what the bug is
33+
placeholder: Tell us what you found...
34+
validations:
35+
required: true
36+
37+
- type: textarea
38+
id: expected
39+
attributes:
40+
label: Expected Behavior
41+
description: What did you expect to happen?
42+
placeholder: What should happen...
43+
validations:
44+
required: true
45+
46+
- type: textarea
47+
id: actual
48+
attributes:
49+
label: Actual Behavior
50+
description: What actually happened?
51+
placeholder: What actually happened...
52+
validations:
53+
required: true
54+
55+
- type: textarea
56+
id: reproduce
57+
attributes:
58+
label: Steps to Reproduce
59+
description: How can we reproduce this issue?
60+
placeholder: |
61+
1. Go to '...'
62+
2. Click on '....'
63+
3. See error
64+
validations:
65+
required: false
66+
67+
- type: textarea
68+
id: context
69+
attributes:
70+
label: Additional Context
71+
description: Any other information that might be relevant
72+
placeholder: Screenshots, links, etc.
73+
validations:
74+
required: false

0 commit comments

Comments
 (0)