Skip to content

Commit a5e7fd7

Browse files
authored
Merge pull request #890 from OneSignal/issue-templates
Update issue templates
2 parents 0c1f785 + b22b15b commit a5e7fd7

File tree

4 files changed

+107
-33
lines changed

4 files changed

+107
-33
lines changed

.github/ISSUE_TEMPLATE.md

Lines changed: 0 additions & 33 deletions
This file was deleted.

.github/ask-question.yml

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
name: 🙋‍♂️ Ask a question
2+
description: Tell us what's on your mind
3+
title: "[Question]: "
4+
labels: ["triage"]
5+
assignees:
6+
- OneSignal/eng-developer-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

.github/bug-report.yml

Lines changed: 69 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,69 @@
1+
name: 🪳 Bug report
2+
description: File a bug report
3+
title: "[Bug]: "
4+
labels: ["bug", "triage"]
5+
assignees:
6+
- OneSignal/eng-developer-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: The latest version of the SDK causes a runtime error.
18+
validations:
19+
required: true
20+
- type: dropdown
21+
id: browsers
22+
attributes:
23+
label: What browsers are you seeing the problem on?
24+
multiple: true
25+
options:
26+
- Firefox
27+
- Chrome (Chromium)
28+
- Safari
29+
- Microsoft Edge
30+
- Opera
31+
- Brave
32+
- Other
33+
validations:
34+
required: true
35+
- type: input
36+
id: operating-system
37+
attributes:
38+
label: What operating system are you running?
39+
description: Make sure to include the version.
40+
placeholder: macOS Monterey 12.3.1
41+
validations:
42+
required: true
43+
- type: textarea
44+
id: reproduction-steps
45+
attributes:
46+
label: Steps to reproduce?
47+
description: Provide as much detail as posible to reproduce the issue.
48+
placeholder: |
49+
1. Install dependencies: vX.Y.Z, etc...
50+
2. Run the app
51+
3. Click on the notification prompt
52+
4. Note that this causes a runtime error and a failed subscription.
53+
render: Markdown
54+
validations:
55+
required: true
56+
- type: textarea
57+
id: what-are-expectations
58+
attributes:
59+
label: What did you expect to happen?
60+
description: Also tell us, what did you expect to happen?
61+
placeholder: I expected the notification prompt to cause a native permission change in the browser.
62+
validations:
63+
required: true
64+
- type: textarea
65+
id: logs
66+
attributes:
67+
label: Relevant log output
68+
description: Please copy and paste any relevant log output. This will be automatically formatted into code, so no need for backticks.
69+
render: Shell

.github/general-feedback.yml

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
name: 📣 General feedback
2+
description: Tell us what's on your mind
3+
title: "[Feedback]: "
4+
labels: ["triage"]
5+
assignees:
6+
- OneSignal/eng-developer-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

0 commit comments

Comments
 (0)