Skip to content

Commit 8facbc7

Browse files
committed
Add bug report issue template
1 parent e1f5377 commit 8facbc7

File tree

1 file changed

+63
-0
lines changed

1 file changed

+63
-0
lines changed

.github/ISSUE_TEMPLATE/bug-report.yml

Lines changed: 63 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,63 @@
1+
name: "Bug Report"
2+
description: "Report a bug to help us improve"
3+
labels: ["Bug", "Status: Needs Triage"]
4+
assignees: []
5+
6+
body:
7+
- type: markdown
8+
attributes:
9+
value: |
10+
Thanks for taking the time to fill out this bug report!
11+
Please provide as much detail as possible.
12+
13+
- type: input
14+
id: page_url
15+
attributes:
16+
label: Affected Page URL
17+
description: The exact page address where the bug occurs
18+
placeholder: e.g. https://www.php.net/manual/en/function.date.php
19+
validations:
20+
required: true
21+
22+
- type: textarea
23+
id: bug_description
24+
attributes:
25+
label: "Describe the bug"
26+
description: "A clear and concise description of what the bug is."
27+
placeholder: "Describe the issue here..."
28+
validations:
29+
required: true
30+
31+
- type: textarea
32+
id: steps_to_reproduce
33+
attributes:
34+
label: "Steps to reproduce"
35+
description: "Explain how to reproduce the behavior."
36+
placeholder: |
37+
1. Go to '...'
38+
2. Click on '....'
39+
3. Scroll down to '....'
40+
4. See error
41+
validations:
42+
required: true
43+
44+
- type: textarea
45+
id: expected_behavior
46+
attributes:
47+
label: "Expected behavior"
48+
description: "What did you expect to happen?"
49+
placeholder: "A clear and concise description..."
50+
validations:
51+
required: true
52+
53+
- type: textarea
54+
id: screenshots
55+
attributes:
56+
label: "Screenshots"
57+
description: "If applicable, add screenshots to help explain your problem."
58+
59+
- type: textarea
60+
id: additional_context
61+
attributes:
62+
label: "Additional context"
63+
description: "Add any other context about the problem here."

0 commit comments

Comments
 (0)