Skip to content

Commit 1855378

Browse files
Create bug-report.yml
1 parent d911059 commit 1855378

File tree

1 file changed

+138
-0
lines changed

1 file changed

+138
-0
lines changed

.github/ISSUE_TEMPLATE/bug-report.yml

Lines changed: 138 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,138 @@
1+
name: Bug report
2+
description: Report an issue with react-native-safe-area-context.
3+
body:
4+
- type: markdown
5+
attributes:
6+
value: |
7+
Thanks for taking the time to fill out this bug report!
8+
9+
Before you proceed:
10+
11+
- Make sure to check whether there are similar issues in the repository
12+
- Make sure to clean cache in your project. Depending on your setup this could be done by:
13+
- `yarn start --reset-cache` or
14+
- `npm start -- --reset-cache` or
15+
- `expo start --clear`
16+
17+
- type: markdown
18+
attributes:
19+
value: |
20+
## Required information
21+
- type: textarea
22+
id: description
23+
attributes:
24+
label: Description
25+
description: Please provide a clear, concise and descriptive explanation of what the bug is. Include screenshots or a video if needed. Tell us what were you expecting to happen instead of what is happening now.
26+
validations:
27+
required: true
28+
29+
- type: textarea
30+
id: steps-to-reproduce
31+
attributes:
32+
label: Steps to reproduce
33+
description: Provide a detailed list of steps that reproduce the issue.
34+
placeholder: |
35+
1.
36+
2.
37+
3.
38+
validations:
39+
required: true
40+
41+
- type: input
42+
id: repro
43+
attributes:
44+
label: Snack or a link to a repository
45+
description: |
46+
Please provide a Snack (https://snack.expo.io/) or a link to a repository on GitHub under your username that reproduces the issue.
47+
Here are some tips for providing a minimal example: https://stackoverflow.com/help/mcve.
48+
Issues without a reproduction are likely to not be looked at.
49+
placeholder: Link to a Snack or a GitHub repository
50+
validations:
51+
required: true
52+
53+
- type: input
54+
id: rnsac-version
55+
attributes:
56+
label: Safe Area Context version
57+
description: What version of react-native-safe-area-context are you using?
58+
placeholder: 5.2.0
59+
validations:
60+
required: true
61+
62+
- type: input
63+
id: react-native-version
64+
attributes:
65+
label: React Native version
66+
description: What version of react-native are you using?
67+
placeholder: 0.76.0
68+
validations:
69+
required: true
70+
71+
- type: dropdown
72+
id: platforms
73+
attributes:
74+
label: Platforms
75+
description: On what platforms does the issue occur?
76+
multiple: true
77+
options:
78+
- Android
79+
- iOS
80+
- Web
81+
- Windows
82+
- macOS
83+
- tvOS
84+
- visionOS
85+
validations:
86+
required: true
87+
88+
- type: markdown
89+
attributes:
90+
value: |
91+
## Additonal information
92+
93+
Providing as much information as possible greatly helps us with reproducting the issues.
94+
95+
- type: dropdown
96+
id: architecture
97+
attributes:
98+
label: Architecture
99+
description: What React Native architecture your application is running on?
100+
options:
101+
- Paper (Old Architecture)
102+
- Fabric (New Architecture)
103+
104+
- type: dropdown
105+
id: build-type
106+
attributes:
107+
label: Build type
108+
description: What mode your application is running?
109+
options:
110+
- Debug mode
111+
- Release mode
112+
113+
- type: dropdown
114+
id: emulator
115+
attributes:
116+
label: Device
117+
description: How are you running your application?
118+
options:
119+
- iOS simulator
120+
- Android emulator
121+
- Real device
122+
123+
- type: input
124+
id: device-model
125+
attributes:
126+
label: Device model
127+
description: What device you are experiencing this problem on? Specify full device name along with the version of the operating system it's running.
128+
placeholder: ex. Samsung Galaxy A22 (Android 12)
129+
130+
- type: dropdown
131+
id: acknowledgements
132+
attributes:
133+
label: Acknowledgements
134+
description: I searched for similar issues in the repository.
135+
options:
136+
- 'Yes'
137+
validations:
138+
required: true

0 commit comments

Comments
 (0)