Skip to content

Commit 9e69a7e

Browse files
committed
chore: add BUG-REPORT.yml
1 parent a8b3b34 commit 9e69a7e

File tree

1 file changed

+70
-0
lines changed

1 file changed

+70
-0
lines changed
Lines changed: 70 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,70 @@
1+
name: 'Bug Report'
2+
description: Create a new ticket for a bug.
3+
title: '[BUG] - <title>'
4+
labels: ['bug']
5+
body:
6+
- type: textarea
7+
id: description
8+
attributes:
9+
label: 'Description'
10+
description: Please enter an explicit description of your issue
11+
placeholder: Short and explicit description of your incident...
12+
validations:
13+
required: true
14+
- type: textarea
15+
id: reprod
16+
attributes:
17+
label: 'Reproduction steps'
18+
description: Please enter an explicit description of your issue
19+
value: |
20+
1. Go to '...'
21+
2. Click on '....'
22+
3. Scroll down to '....'
23+
4. See error
24+
render: bash
25+
validations:
26+
required: true
27+
- type: textarea
28+
id: screenshot
29+
attributes:
30+
label: 'Screenshots'
31+
description: If applicable, add screenshots to help explain your problem.
32+
value: |
33+
![DESCRIPTION](LINK.png)
34+
render: bash
35+
validations:
36+
required: false
37+
- type: textarea
38+
id: logs
39+
attributes:
40+
label: 'Logs'
41+
description: Please copy and paste any relevant log output. This will be automatically formatted into code, so no need for backticks.
42+
render: bash
43+
validations:
44+
required: false
45+
- type: dropdown
46+
id: browsers
47+
attributes:
48+
label: 'Browsers'
49+
description: What browsers are you seeing the problem on ?
50+
multiple: true
51+
options:
52+
- Firefox
53+
- Chrome
54+
- Safari
55+
- Microsoft Edge
56+
- Opera
57+
validations:
58+
required: true
59+
- type: dropdown
60+
id: os
61+
attributes:
62+
label: 'OS'
63+
description: What is the impacted environment ?
64+
multiple: true
65+
options:
66+
- Windows
67+
- Linux
68+
- Mac
69+
validations:
70+
required: false

0 commit comments

Comments
 (0)