Skip to content

Commit 6aa6d47

Browse files
committed
ci: add bug report template
1 parent 83f8a76 commit 6aa6d47

File tree

1 file changed

+92
-0
lines changed

1 file changed

+92
-0
lines changed
Lines changed: 92 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,92 @@
1+
name: '🐞 Bug Report'
2+
description: 'Report an issue to help the project improve.'
3+
title: '[Bug] '
4+
labels: ['type: bug']
5+
6+
assignees:
7+
- lotyp
8+
9+
body:
10+
- type: markdown
11+
attributes:
12+
value: '🐞 Bug Report'
13+
14+
- type: textarea
15+
id: bug-description
16+
attributes:
17+
label: 'Describe the bug'
18+
description: 'A clear and concise description of what the bug is.'
19+
placeholder: 'Type here...'
20+
validations:
21+
required: true
22+
23+
- type: textarea
24+
id: regression
25+
attributes:
26+
label: 'Is this a regression?'
27+
description: |
28+
'Did this behaviour use to work in the previous version?
29+
Yes, the last version in which this bug was not present was: ...'
30+
placeholder: 'Yes or No and details...'
31+
validations:
32+
required: false
33+
34+
- type: textarea
35+
id: steps-to-reproduce
36+
attributes:
37+
label: 'To Reproduce'
38+
description: |
39+
'Steps to reproduce the error:
40+
1. Use x argument / navigate to...
41+
2. Fill this information...
42+
3. Go to...
43+
4. See error'
44+
placeholder: 'Describe the steps...'
45+
validations:
46+
required: true
47+
48+
- type: textarea
49+
id: expected-behaviour
50+
attributes:
51+
label: 'Expected behaviour'
52+
description: 'A clear and concise description of what you expected to happen.'
53+
placeholder: 'Type here...'
54+
validations:
55+
required: true
56+
57+
- type: textarea
58+
id: media
59+
attributes:
60+
label: 'Media prove'
61+
description: 'If applicable, add screenshots or videos to help explain your problem.'
62+
placeholder: 'Upload files or leave a link here...'
63+
validations:
64+
required: false
65+
66+
- type: textarea
67+
id: environment
68+
attributes:
69+
label: 'Your environment'
70+
description: |
71+
'Please provide information about your environment.
72+
* OS: [e.g. Ubuntu]
73+
* PHP version: [e.g. 8.2.2]
74+
* Package version: [e.g. 1.0.0]
75+
placeholder: 'Fill out all applicable fields...'
76+
validations:
77+
required: false
78+
79+
- type: textarea
80+
id: additional-context
81+
attributes:
82+
label: 'Additional context'
83+
description: 'Add any other context or additional information about the problem here.'
84+
placeholder: 'Type here...'
85+
validations:
86+
required: false
87+
88+
- type: markdown
89+
attributes:
90+
value: |
91+
📛 To expedite issue processing, please search open and closed issues before submitting a new one.
92+
Please read our Rules of Conduct at this repository's `.github/CODE_OF_CONDUCT.md` and the Contribution Guidelines at `.github/CONTRIBUTING.md` 📛

0 commit comments

Comments
 (0)