Skip to content

Commit 00c0304

Browse files
committed
Added .github/ISSUE_TEMPLATE/bug_report.yaml
1 parent 64a102b commit 00c0304

File tree

1 file changed

+81
-0
lines changed

1 file changed

+81
-0
lines changed
Lines changed: 81 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,81 @@
1+
name: 🐞 Bug
2+
description: Create a report to help us improve
3+
title: "[BUG] <title>"
4+
labels: [bug, needs triage]
5+
6+
body:
7+
- type: markdown
8+
attributes:
9+
value: |
10+
Thanks for taking the time to fill out this bug report!
11+
- type: checkboxes
12+
attributes:
13+
label: Is there an existing issue for this?
14+
description: Please search to see if an issue already exists for the bug you encountered.
15+
options:
16+
- label: I have searched the existing issues
17+
required: true
18+
- type: textarea
19+
id: what-happened
20+
attributes:
21+
label: Describe the bug?
22+
description: A clear and concise description of what the bug is
23+
placeholder: Tell us what you see!
24+
validations:
25+
required: true
26+
- type: textarea
27+
id: reproduce
28+
attributes:
29+
label: To Reproduce
30+
description: Steps to reproduce the behavior?
31+
placeholder: |
32+
1. Go to '...'
33+
2. Click on '....'
34+
3. Scroll down to '....'
35+
4. See error
36+
validations:
37+
required: true
38+
- type: dropdown
39+
id: os
40+
attributes:
41+
label: What OS are you seeing the problem on?
42+
multiple: true
43+
options:
44+
- linux
45+
- macos
46+
- windows
47+
validations:
48+
required: true
49+
- type: textarea
50+
id: expected
51+
attributes:
52+
label: Expected behavior?
53+
description: A clear and concise description of what you expected to happen.
54+
placeholder: Tell us what you expected!
55+
validations:
56+
required: true
57+
- type: textarea
58+
id: logs
59+
attributes:
60+
label: Relevant log output
61+
description: Please copy and paste any relevant log output. This will be automatically formatted into code, so no need for backticks.
62+
render: shell
63+
- type: textarea
64+
attributes:
65+
label: Anything else?
66+
description: |
67+
Links? or References?
68+
69+
Anything that will give us more context about the issue you are encountering!
70+
71+
Tip: You can attach images or log files by clicking this area to highlight it and then dragging files in.
72+
validations:
73+
required: false
74+
- type: checkboxes
75+
id: terms
76+
attributes:
77+
label: Code of Conduct
78+
description: By submitting this issue, you agree to follow our [Code of Conduct](../blob/main/CODE_OF_CONDUCT.md)
79+
options:
80+
- label: I agree to follow this project's Code of Conduct
81+
required: true

0 commit comments

Comments
 (0)