Skip to content

Commit b31f29c

Browse files
chore: add issue template
1 parent 1c4175e commit b31f29c

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
2+
description: Report an issue to help improve the project.
3+
title: "[Bug]: <title>"
4+
labels: ['bug', 'triage']
5+
6+
body:
7+
8+
- type: markdown
9+
id: greet
10+
attributes:
11+
value: |
12+
Thanks for stopping by to let us know something could be better!
13+
14+
- type: checkboxes
15+
id: quick-fix
16+
attributes:
17+
label: Is there an existing issue for this?
18+
description: |
19+
Please search to see if an issue already exists for the bug you encountered.
20+
21+
- https://github.com/AsifArmanRahman/firebase-rest-api/issues
22+
options:
23+
- label: I have searched the existing issues
24+
required: true
25+
26+
- type: markdown
27+
id: issue-persists
28+
attributes:
29+
value: |
30+
<br>
31+
32+
## If you are still having issues, please be sure to include as much information as possible:
33+
34+
- type: textarea
35+
id: environment
36+
attributes:
37+
label: Environment
38+
description: |
39+
examples:
40+
- **OS**: Ubuntu 20.04
41+
- **Python**: 3.9.12
42+
value: |
43+
- OS:
44+
- Python:
45+
render: markdown
46+
validations:
47+
required: true
48+
49+
- type: textarea
50+
id: what-happened
51+
attributes:
52+
label: What happened?
53+
description: |
54+
Also tell us, what did you expect to happen?
55+
placeholder: |
56+
A bug happened!
57+
validations:
58+
required: true
59+
60+
- type: textarea
61+
id: code-snippet
62+
attributes:
63+
label: Code Snippet
64+
description: |
65+
Please provide the code snippet to reproduce bug.
66+
67+
Note: This will be automatically formatted into code, so no need for backtick's.
68+
render: shell
69+
validations:
70+
required: true
71+
72+
- type: textarea
73+
id: logs
74+
attributes:
75+
label: Relevant log output
76+
description: |
77+
Please copy and paste any relevant log output.
78+
79+
Note: This will be automatically formatted into code, so no need for backtick's.
80+
render: shell
81+
validations:
82+
required: false
83+
84+
- type: textarea
85+
attributes:
86+
label: Anything else?
87+
description: |
88+
Links? References? Anything that will give us more context about the issue you are encountering!
89+
90+
Tip: You can attach images or files by clicking this area to highlight it and then dragging files in.
91+
validations:
92+
required: false

0 commit comments

Comments
 (0)