Skip to content

Commit 24889f6

Browse files
committed
basic template
1 parent ab65a24 commit 24889f6

File tree

1 file changed

+60
-0
lines changed

1 file changed

+60
-0
lines changed
Lines changed: 60 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,60 @@
1+
name: Bug Report
2+
description: File a bug report
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: input
11+
id: contact
12+
attributes:
13+
label: Contact Details
14+
description: How can we get in touch with you if we need more info?
15+
placeholder: ex. [email protected]
16+
validations:
17+
required: false
18+
- type: textarea
19+
id: what-happened
20+
attributes:
21+
label: What happened?
22+
description: Also tell us, what did you expect to happen?
23+
placeholder: Tell us what you see!
24+
value: "A bug happened!"
25+
validations:
26+
required: true
27+
- type: dropdown
28+
id: version
29+
attributes:
30+
label: Version
31+
description: What version of our software are you running?
32+
options:
33+
- 1.0.2 (Default)
34+
- 1.0.3 (Edge)
35+
validations:
36+
required: true
37+
- type: dropdown
38+
id: browsers
39+
attributes:
40+
label: What browsers are you seeing the problem on?
41+
multiple: true
42+
options:
43+
- Firefox
44+
- Chrome
45+
- Safari
46+
- Microsoft Edge
47+
- type: textarea
48+
id: logs
49+
attributes:
50+
label: Relevant log output
51+
description: Please copy and paste any relevant log output. This will be automatically formatted into code, so no need for backticks.
52+
render: shell
53+
- type: checkboxes
54+
id: terms
55+
attributes:
56+
label: Code of Conduct
57+
description: By submitting this issue, you agree to follow our [Code of Conduct](https://example.com)
58+
options:
59+
- label: I agree to follow this project's Code of Conduct
60+
required: true

0 commit comments

Comments
 (0)