1+ name : Bug report
2+
3+ description : Create a report to help us improve CodeIgniter4 Queue
4+ title : " Bug: "
5+ labels : ['bug']
6+
7+ body :
8+ - type : markdown
9+ attributes :
10+ value : |
11+ Thanks for taking the time to fill out this bug report!
12+
13+ Before you begin, **please ensure that there are no existing issues,
14+ whether still open or closed, related to your report**.
15+ If there is, your report will be closed promptly.
16+
17+ For example, if you encounter an issue with queue processing,
18+ you can search the GitHub repository with relevant keywords.
19+
20+ ---
21+
22+ - type : input
23+ id : php-version
24+ attributes :
25+ label : PHP Version
26+ description : |
27+ e.g. 8.2.0
28+ validations :
29+ required : true
30+
31+ - type : input
32+ id : codeigniter-version
33+ attributes :
34+ label : CodeIgniter4 Version
35+ description : |
36+ e.g. 4.5.0
37+ validations :
38+ required : true
39+
40+ - type : input
41+ id : queue-version
42+ attributes :
43+ label : Queue Package Version
44+ description : |
45+ e.g. dev:develop, 1.0.0 and ...
46+ If you are not using the [latest version](https://github.com/codeigniter4/queue/releases), please
47+ check to see if the problem occurs with the latest version.
48+ validations :
49+ required : true
50+
51+ - type : dropdown
52+ id : operating-systems
53+ attributes :
54+ label : Which operating systems have you tested for this bug?
55+ description : You may select more than one.
56+ multiple : true
57+ options :
58+ - macOS
59+ - Windows
60+ - Linux
61+ validations :
62+ required : true
63+
64+ - type : dropdown
65+ id : server
66+ attributes :
67+ label : Which server did you use?
68+ options :
69+ - apache
70+ - cli
71+ - cli-server (PHP built-in webserver)
72+ - cgi-fcgi
73+ - fpm-fcgi
74+ - phpdbg
75+ validations :
76+ required : true
77+
78+ - type : input
79+ id : queue-driver
80+ attributes :
81+ label : Queue Driver
82+ description : |
83+ e.g. database, redis, predis
84+ validations :
85+ required : true
86+
87+ - type : textarea
88+ id : queue-configuration
89+ attributes :
90+ label : Queue Configuration
91+ description : |
92+ Please provide your queue configuration settings.
93+ **Important:** Before sharing, ensure that all sensitive data such as passwords, API keys, and secrets are masked or removed.
94+ validations :
95+ required : true
96+
97+ - type : textarea
98+ id : description
99+ attributes :
100+ label : What happened?
101+ placeholder : Tell us what you see!
102+ validations :
103+ required : true
104+
105+ - type : textarea
106+ attributes :
107+ label : Steps to Reproduce
108+ description : Steps to reproduce the behavior.
109+ validations :
110+ required : true
111+
112+ - type : textarea
113+ attributes :
114+ label : Expected Output
115+ description : What do you expect to happen instead of this filed bug?
116+ validations :
117+ required : true
118+
119+ - type : textarea
120+ attributes :
121+ label : Anything else?
122+ description : |
123+ Links? References? Anything that will give us more context about the issue you are encountering!
124+
125+ Tip: You can attach images or log files by clicking this area to highlight it and then dragging files in.
126+ validations :
127+ required : false
0 commit comments