Skip to content

Commit 51966d0

Browse files
committed
Convert bug report to new syntax
1 parent 4034dc4 commit 51966d0

2 files changed

Lines changed: 99 additions & 40 deletions

File tree

.github/ISSUE_TEMPLATE/bug_report.md

Lines changed: 0 additions & 40 deletions
This file was deleted.
Lines changed: 99 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,99 @@
1+
name: Bug report
2+
description: Create a report to help us improve CodeIgniter
3+
title: "Bug: "
4+
labels: ['bug']
5+
6+
body:
7+
- type: markdown
8+
attributes:
9+
value: |
10+
Thanks for taking the time to fill out this bug report! Before you begin, please
11+
ensure that there are no existing issues, whether still open or closed, related
12+
to your report. If there is, your report will be closed promptly.
13+
14+
- type: dropdowm
15+
id: php-version
16+
attributes:
17+
label: PHP Version
18+
description: Which PHP versions did you run your code?
19+
multiple: true
20+
options:
21+
- '7.3'
22+
- '7.4'
23+
- '8.0'
24+
- '8.1'
25+
validations:
26+
required: true
27+
28+
- type: input
29+
id: codeigniter-version
30+
attributes:
31+
label: CodeIgniter4 Version
32+
validations:
33+
required: true
34+
35+
- type: dropdown
36+
id: operating-systems
37+
attributes:
38+
label: Which operating systems have you tested for this bug?
39+
description: You may select more than one.
40+
multiple: true
41+
options:
42+
- macOS
43+
- Windows
44+
- Linux
45+
validations:
46+
required: true
47+
48+
- type: dropdown
49+
id: server
50+
attributes:
51+
label: Which server did you use?
52+
options:
53+
- apache
54+
- cli
55+
- cli-server (PHP built-in webserver)
56+
- cgi-fcgi
57+
- fpm-fcgi
58+
- phpdbg
59+
validations:
60+
required: true
61+
62+
- type: input
63+
id: database
64+
attributes:
65+
label: Database
66+
validations:
67+
required: false
68+
69+
- type: textarea
70+
id: description
71+
attributes:
72+
label: What happened?
73+
placeholder: Tell us what you see!
74+
validations:
75+
required: true
76+
77+
- type: textarea
78+
attributes:
79+
label: Steps to Reproduce
80+
description: Steps to reproduce the behavior.
81+
validations:
82+
required: true
83+
84+
- type: textarea
85+
attributes:
86+
label: Expected Output
87+
description: What do you expect to happen instead of this filed bug?
88+
validations:
89+
required: true
90+
91+
- type: textarea
92+
attributes:
93+
label: Anything else?
94+
description: |
95+
Links? References? Anything that will give us more context about the issue you are encountering!
96+
97+
Tip: You can attach images or log files by clicking this area to highlight it and then dragging files in.
98+
validations:
99+
required: false

0 commit comments

Comments
 (0)