Skip to content

Commit 3911dfd

Browse files
authored
Merge pull request #1608 from OneSignal/github/issue-templates
[Add] Github Issue Templates
2 parents 6d97259 + 20dc2df commit 3911dfd

File tree

3 files changed

+149
-0
lines changed

3 files changed

+149
-0
lines changed
Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
name: 🙋‍♂️ Ask a question
2+
description: Tell us what's on your mind
3+
title: "[question]: "
4+
labels: ["question"]
5+
# assignees:
6+
# - OneSignal/android-sdk
7+
body:
8+
- type: markdown
9+
attributes:
10+
value: |
11+
Having issues integrating this SDK?
12+
- type: textarea
13+
id: question
14+
attributes:
15+
label: How can we help?
16+
description: Specific question regarding integrating this SDK.
17+
placeholder: How do I...?
18+
validations:
19+
required: true
20+
- type: checkboxes
21+
id: terms
22+
attributes:
23+
label: Code of Conduct
24+
description: By submitting this issue, you agree to follow our [Code of Conduct](https://github.com/OneSignal/OneSignal-Android-SDK/blob/main/CONTRIBUTING.md)
25+
options:
26+
- label: I agree to follow this project's Code of Conduct
27+
required: true

.github/ISSUE_TEMPLATE/bug-report.yml

Lines changed: 95 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,95 @@
1+
name: 🪳 Bug report
2+
description: File a bug report
3+
title: "[Bug]: "
4+
labels: ["bug", "triage"]
5+
# assignees:
6+
# - OneSignal/android-sdk
7+
body:
8+
- type: markdown
9+
attributes:
10+
value: |
11+
Thanks for taking the time to fill out this bug report!
12+
- type: textarea
13+
id: what-happened
14+
attributes:
15+
label: What happened?
16+
description: Provide a thorough description of whats going on.
17+
placeholder: e.g. The latest version of the SDK causes my screen to go blank when I tap on the screen three times.
18+
validations:
19+
required: true
20+
- type: textarea
21+
id: reproduction-steps
22+
attributes:
23+
label: Steps to reproduce?
24+
description: Provide as much detail as possible to reproduce the issue.
25+
placeholder: |
26+
1. Install vX.Y.Z of dependency
27+
2. Launch the app on Android device
28+
3. Tap the screen three times
29+
4. Note that the app crashes
30+
render: Markdown
31+
validations:
32+
required: true
33+
- type: textarea
34+
id: what-are-expectations
35+
attributes:
36+
label: What did you expect to happen?
37+
description: Also tell us, what did you expect to happen?
38+
placeholder: I expected the app to continue running no matter how many times I tap the screen.
39+
validations:
40+
required: true
41+
- type: input
42+
id: android-android-version
43+
attributes:
44+
label: OneSignal Android SDK version
45+
description: What version of the OneSignal Android SDK are you using?
46+
placeholder: Release 4.7.4
47+
validations:
48+
required: true
49+
- type: dropdown
50+
id: android-major-version
51+
attributes:
52+
label: Android version
53+
description: Which versions of Android are broken for you?
54+
multiple: true
55+
options:
56+
- "13"
57+
- "12"
58+
- "11"
59+
- "10"
60+
- "9"
61+
- "8"
62+
- "7.1"
63+
- "7.0"
64+
- "6"
65+
- "5.1"
66+
- "5.0"
67+
- "4.4"
68+
- "4.3 or below"
69+
validations:
70+
required: true
71+
- type: textarea
72+
id: android-specific-models
73+
attributes:
74+
label: Specific Android models
75+
description: What are the specific models.
76+
placeholder: |
77+
* Android Studio Emulator on Android 12
78+
* Pixel 6
79+
* Samsung Galaxy S22
80+
render: Markdown
81+
82+
- type: textarea
83+
id: logs
84+
attributes:
85+
label: Relevant log output
86+
description: Please copy and paste any relevant log output. This will be automatically formatted into code, so no need for backticks.
87+
render: Shell
88+
- type: checkboxes
89+
id: terms
90+
attributes:
91+
label: Code of Conduct
92+
description: By submitting this issue, you agree to follow our [Code of Conduct](https://github.com/OneSignal/OneSignal-Android-SDK/blob/main/CONTRIBUTING.md)
93+
options:
94+
- label: I agree to follow this project's Code of Conduct
95+
required: true
Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
name: 📣 General feedback
2+
description: Tell us what's on your mind
3+
title: "[Feedback]: "
4+
labels: ["triage"]
5+
# assignees:
6+
# - OneSignal/android-sdk
7+
body:
8+
- type: markdown
9+
attributes:
10+
value: |
11+
Thanks for sharing your valuable feedback!
12+
- type: textarea
13+
id: feedback
14+
attributes:
15+
label: What's on your mind?
16+
description: Feedback regarding this SDK.
17+
placeholder: Share your feedback...
18+
validations:
19+
required: true
20+
- type: checkboxes
21+
id: terms
22+
attributes:
23+
label: Code of Conduct
24+
description: By submitting this issue, you agree to follow our [Code of Conduct](https://github.com/OneSignal/OneSignal-Android-SDK/blob/main/CONTRIBUTING.md)
25+
options:
26+
- label: I agree to follow this project's Code of Conduct
27+
required: true

0 commit comments

Comments
 (0)