Skip to content

Commit eb2f8a1

Browse files
committed
Added custom bug reports for extensions
1 parent 7ad3e32 commit eb2f8a1

File tree

1 file changed

+144
-0
lines changed

1 file changed

+144
-0
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,144 @@
1+
name: "Report a bug for a Phpfastcache Extension"
2+
title: "<NAME THE FEATURE> - <SUMMARIZE THE PROBLEM>"
3+
description: Create a report to help us improve a Phpfastcache extension
4+
labels: ["Needs triage 🔎"]
5+
assignees: ["Geolim4"]
6+
body:
7+
- type: markdown
8+
attributes:
9+
value: |
10+
### Before you start
11+
12+
**Are you looking for development help?**
13+
↩ Please note that we cannot provide assistance on web development. We recommend asking around on a dedicated help forum like StackOverflow.
14+
15+
### Issue etiquette
16+
17+
When opening an issue, please:
18+
- Follow the project's [Code of Conduct](https://github.com/PHPSocialNetwork/phpfastcache/blob/master/CODE_OF_CONDUCT.md) as well as the [GitHub Community Guidelines](https://docs.github.com/en/site-policy/github-terms/github-community-guidelines).
19+
- Check for an [existing issue](https://github.com/PHPSocialNetwork/phpfastcache/issues) first. If someone else has opened an issue describing the same problem, please upvote their issue rather than creating another one.
20+
- Keep issues relevant to the project. Irrelevant issues will be automatically closed and marked as spam, and repeated offenses may result in exclusion from our organization.
21+
- Provide as much detail as possible. The more detail you are able to provide, the better!
22+
- Write issues primarily in English. While translation tools are available, we will be able to provide better assistance with pre-translated content. You are more than welcome to include a version of the issue body in your preferred language alongside the English version.
23+
- **Make sure that you searched an answer on our [wiki](https://github.com/PHPSocialNetwork/phpfastcache/wiki)**
24+
25+
---
26+
- type: dropdown
27+
id: extension
28+
attributes:
29+
label: Which extension is this issue about ?
30+
options:
31+
- Couchbasev4
32+
validations:
33+
required: true
34+
- type: dropdown
35+
id: type
36+
attributes:
37+
label: What type of issue is this?
38+
options:
39+
- Incorrect/unexpected/unexplainable behavior
40+
- Exception/Error/Warning/Notice/Deprecation
41+
- PSR-6/16 standard violation
42+
- Wiki/Documentation/Readme typo/fault or lack of documentation
43+
- Incompatibility (be specific)
44+
- Other (Please Specify)
45+
validations:
46+
required: true
47+
- type: input
48+
id: os
49+
attributes:
50+
label: Operating system + version
51+
description: "The operating system with version, ex: Ubuntu 18.04 or Windows 10"
52+
validations:
53+
required: true
54+
- type: input
55+
id: php
56+
attributes:
57+
label: PHP version
58+
description: |
59+
The PHP version you're running Phpfastcache on.
60+
_Can be retrieved using command line `php -v | sed -n 1p`_
61+
validations:
62+
required: true
63+
- type: input
64+
id: connector
65+
attributes:
66+
label: Connector/Database version (if applicable)
67+
description: |
68+
The connector and/or SDK version + the database version if applicable, ex:
69+
- Couchbase 7.1.0 + PECL Extension 3.2.2
70+
- Redis 7.0.0 + PECL Extension 5.3.7
71+
- MongoDB 5.0.2 Community + mongodb/mongodb
72+
- etc
73+
74+
**Be as much detailed as you can be !**
75+
validations:
76+
required: false
77+
- type: input
78+
id: extension_exact_version
79+
attributes:
80+
label: Extension version (NOT THE PHPFASTCACHE VERSION)
81+
description: |
82+
Please keep in mind that some versions are partially or no longer supported.
83+
84+
See our [global support timeline](https://github.com/PHPSocialNetwork/phpfastcache/wiki/%5BV4%CB%96%5D-Global-support-timeline) ⌚
85+
validations:
86+
required: true
87+
- type: input
88+
id: pfc_exact_version
89+
attributes:
90+
label: Phpfastcache version
91+
description: |
92+
Please keep in mind that some versions are partially or no longer supported.
93+
94+
See our [global support timeline](https://github.com/PHPSocialNetwork/phpfastcache/wiki/%5BV4%CB%96%5D-Global-support-timeline) ⌚
95+
validations:
96+
required: true
97+
- type: textarea
98+
id: problem
99+
attributes:
100+
label: Describe the issue you're facing
101+
description: Provide as much detail as possible. The more detail you are able to provide, the better!
102+
validations:
103+
required: true
104+
- type: textarea
105+
id: expected
106+
attributes:
107+
label: Expected behavior
108+
description: If applicable, please describe the behavior you expected
109+
validations:
110+
required: false
111+
- type: textarea
112+
id: code_sample
113+
attributes:
114+
label: Code sample (optional)
115+
description: If applicable, please provide a code sample
116+
- type: textarea
117+
id: suggestion
118+
attributes:
119+
label: Suggestion to fix the issue (optional)
120+
description: Do you have an suggestion on how to fix this issue ?
121+
- type: textarea
122+
id: references
123+
attributes:
124+
label: References (optional)
125+
description: Can you link to any release notes, bugs, pull requests, or Stack-Overflow link related to this?
126+
- type: textarea
127+
id: more_info
128+
attributes:
129+
label: Do you have anything more you want to share? (optional)
130+
description: For example, screenshots, screen recordings, or sample code, logs, etc.
131+
- type: checkboxes
132+
id: wiki_confirmation
133+
attributes:
134+
label: Have you searched in our Wiki before posting ?
135+
description: Our Wiki contains tons of information, make sure you've searched over it before posting this issue.
136+
options:
137+
- label: I have searched over the Wiki
138+
required: true
139+
- type: markdown
140+
attributes:
141+
value: |
142+
---
143+
You've finished 👏
144+
The following fields are prefilled and should not be modified. Please click **Submit new issue**.

0 commit comments

Comments
 (0)