Skip to content

Commit d9a232a

Browse files
authored
meta: Add issue templates (#198)
1 parent 2c6ca98 commit d9a232a

File tree

2 files changed

+102
-0
lines changed

2 files changed

+102
-0
lines changed

.github/ISSUE_TEMPLATE/bug.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: Report a bug in Sentry for Godot
3+
labels:
4+
- Bug
5+
- Godot
6+
body:
7+
- type: markdown
8+
attributes:
9+
value: |
10+
- Write a descriptive title above.
11+
12+
- type: input
13+
attributes:
14+
label: How do you use Sentry?
15+
description: Sentry SaaS (sentry.io) or self-hosted/on-premise (which version?)
16+
placeholder: Sentry SaaS
17+
validations:
18+
required: true
19+
20+
- type: input
21+
attributes:
22+
label: Sentry SDK version
23+
description: |
24+
- Specify Sentry SDK version.
25+
- You can check the version in the Godot Output panel or in the log file.
26+
placeholder: 0.6.0
27+
validations:
28+
required: true
29+
30+
- type: dropdown
31+
id: variant
32+
attributes:
33+
label: How did you install the SDK?
34+
options:
35+
- GitHub release
36+
- AssetLib
37+
- Built from source
38+
default: 0
39+
validations:
40+
required: true
41+
42+
- type: input
43+
attributes:
44+
label: Godot version
45+
description: |
46+
- Specify the Godot version and hardware info if relevant.
47+
- You can copy the version info by clicking on it in the Godot status bar.
48+
placeholder: v4.4.1.stable.official [49a5bc7b6]
49+
validations:
50+
required: true
51+
52+
- type: dropdown
53+
id: variant
54+
attributes:
55+
label: Which platform?
56+
options:
57+
- Windows
58+
- macOS
59+
- Linux
60+
- Android
61+
- iOS
62+
default: 0
63+
validations:
64+
required: true
65+
66+
- type: textarea
67+
attributes:
68+
label: How to reproduce
69+
description: |
70+
- Provide a list of steps or sample code that reproduces the issue.
71+
- You can provide a small Godot project which reproduces the issue.
72+
- Drag and drop a ZIP archive to upload it (10Mb limit).
73+
- Don't include the `.godot` folder in the archive.
74+
- Don't include the `addons/sentry` folder in the archive.
75+
- Reproduction project helps us find the bug faster!
76+
validations:
77+
required: false
78+
79+
- type: textarea
80+
attributes:
81+
label: Expected result
82+
description: |
83+
- What you thought would happen.
84+
validations:
85+
required: false
86+
87+
- type: textarea
88+
attributes:
89+
label: Actual result
90+
description: |
91+
- What actually happened.
92+
- Maybe a screenshot/recording?
93+
- Maybe some logs?
94+
validations:
95+
required: false

.github/ISSUE_TEMPLATE/feature.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
---
2+
name: 💡 Feature Request
3+
about: Tell us about a problem our SDK could solve but doesn't.
4+
labels: ["Godot", "Feature"]
5+
---
6+
7+
What problem could Sentry solve that it doesn't?

0 commit comments

Comments
 (0)