Skip to content

Commit 84795e3

Browse files
committed
Create new bug template with required fields
1 parent 9c31727 commit 84795e3

File tree

1 file changed

+130
-0
lines changed

1 file changed

+130
-0
lines changed
Lines changed: 130 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,130 @@
1+
name: 🐞 Bug Report V2
2+
description: File a bug report
3+
title: '[Bug]: '
4+
labels: ''
5+
assignees: ''
6+
body:
7+
body:
8+
- type: markdown
9+
attributes:
10+
value: |
11+
'[READ THIS] Are you in the right place?'
12+
' * For issues or feature requests related to __the code in this repository__,'
13+
' file a Github issue.'
14+
' * If this is a __feature request__, make sure the issue title starts with "FR:". '
15+
' * For general technical questions, post a question on [StackOverflow](http://stackoverflow.com/) '
16+
' with the firebase tag. '
17+
' * For general Firebase discussion, use the [firebase-talk](https://groups.google.com/forum/#!forum/firebase-talk) '
18+
' google group. '
19+
' * For help troubleshooting your application that does not fall under one '
20+
' of the above categories, reach out to the personalized '
21+
' [Firebase support channel](https://firebase.google.com/support/).'
22+
- type: input
23+
id: operating-system
24+
attributes:
25+
label: Operating System
26+
description: Describe your operating system
27+
placeholder: ex. iOS 16.4
28+
validations:
29+
required: true
30+
- type: input
31+
id: browser-version
32+
attributes:
33+
label: Browser Version
34+
description: Describe your browser version
35+
placeholder: ex. Safari/604.1
36+
validations:
37+
required: true
38+
- type: input
39+
id: firebase-sdk-version
40+
attributes:
41+
label: Firebase SDK Version
42+
description: Describe your Firebase SDK Version
43+
placeholder: ex. 9.16.0
44+
validations:
45+
required: true
46+
- type: input
47+
id: firebase-sdk-product
48+
attributes:
49+
label: Firebase SDK Product
50+
description: Describe your Firebase SDK Product
51+
placeholder: ex. Auth
52+
validations:
53+
required: true
54+
- type: textarea
55+
id: framework
56+
attributes:
57+
label: Describe the framework
58+
description: Describe the framework your app is built with
59+
placeholder: ex. React Native using ExpoGo
60+
validations:
61+
required: true
62+
- type: textarea
63+
id: what-happened
64+
attributes:
65+
label: What happened?
66+
description: Describe the problem
67+
placeholder: Tell us what you see!
68+
value: 'A bug happened!'
69+
validations:
70+
required: true
71+
- type: dropdown
72+
id: version
73+
attributes:
74+
label: Version
75+
description: What version of our software are you running?
76+
options:
77+
- 1.0.2 (Default)
78+
- 1.0.3 (Edge)
79+
validations:
80+
required: true
81+
- type: dropdown
82+
id: browsers
83+
attributes:
84+
label: What browsers are you seeing the problem on?
85+
multiple: true
86+
options:
87+
- Firefox
88+
- Chrome
89+
- Safari
90+
- Microsoft Edge
91+
- type: markdown
92+
attributes:
93+
value: |
94+
'Describe the problem'
95+
- type: textarea
96+
id: steps-to-reproduce
97+
attributes:
98+
label: Steps to reproduce
99+
description: Describe the steps to reproduce
100+
placeholder: |
101+
' What happened? How can we make the problem occur?'
102+
'This could be a description, log/console output, etc.'
103+
validations:
104+
required: true
105+
- type: input
106+
id: browser-version
107+
attributes:
108+
label: Browser Version
109+
description: Describe your browser version
110+
placeholder: |
111+
' What happened? How can we make the problem occur?'
112+
'This could be a description, log/console output, etc.'
113+
validations:
114+
required: true
115+
- type: textarea
116+
id: logs
117+
attributes:
118+
label: Relevant log output
119+
description: Please copy and paste any relevant log output. This will be automatically formatted into code, so no need for backticks.
120+
render: shell
121+
validations:
122+
required: true
123+
- type: textarea
124+
id: reproduce-code
125+
attributes:
126+
label: Code to reproduce issue
127+
description: Please copy and paste any relevant code here to reproduce the problem or links to code to reproduce it.
128+
render: shell
129+
validations:
130+
required: true

0 commit comments

Comments
 (0)