Skip to content

Commit 2888bf5

Browse files
authored
Use the new GH issue forms (#1011)
1 parent ef95b15 commit 2888bf5

File tree

5 files changed

+74
-147
lines changed

5 files changed

+74
-147
lines changed

.github/ISSUE_TEMPLATE/bug.yml

Lines changed: 46 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,46 @@
1+
name: 🐞 Bug Report
2+
description: Tell us about something that's not working the way we (probably) intend.
3+
body:
4+
- type: input
5+
id: version
6+
attributes:
7+
label: Version
8+
placeholder: 21.7.0 ← should look like this (check the footer)
9+
description: What version of self-hosted Sentry are you running?
10+
validations:
11+
required: false
12+
- type: textarea
13+
id: repro
14+
attributes:
15+
label: Steps to Reproduce
16+
description: How can we see what you're seeing? Specific is terrific.
17+
value: |-
18+
1. foo
19+
2. bar
20+
3. baz
21+
validations:
22+
required: true
23+
- type: textarea
24+
id: expected
25+
attributes:
26+
label: Expected Result
27+
validations:
28+
required: true
29+
- type: textarea
30+
id: actual
31+
attributes:
32+
label: Actual Result
33+
description: Logs? Screenshots? Yes, please.
34+
value: |-
35+
e.g.:
36+
- latest install logs: `ls -1 sentry_install_log-*.txt | tail -1 | xargs cat`
37+
- `docker-compose logs` output
38+
validations:
39+
required: true
40+
- type: markdown
41+
attributes:
42+
value: |-
43+
## Thanks 🙏
44+
Check our [triage docs](https://open.sentry.io/triage/) for what to expect next.
45+
validations:
46+
required: false

.github/ISSUE_TEMPLATE/bug_report.md

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

.github/ISSUE_TEMPLATE/feature.yml

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
name: 💡 Feature Request
2+
description: Tell us about a problem our software could solve but doesn't.
3+
body:
4+
- type: textarea
5+
id: problem
6+
attributes:
7+
label: Problem Statement
8+
description: What problem could `onpremise` solve that it doesn't?
9+
placeholder: |-
10+
I want to make whirled peas, but `onpremise` doesn't blend.
11+
validations:
12+
required: true
13+
- type: textarea
14+
id: expected
15+
attributes:
16+
label: Solution Brainstorm
17+
description: We know you have bright ideas to share ... share away, friend.
18+
placeholder: |-
19+
Add a blender to `onpremise`.
20+
validations:
21+
required: false
22+
- type: markdown
23+
attributes:
24+
value: |-
25+
## Thanks 🙏
26+
Check our [triage docs](https://open.sentry.io/triage/) for what to expect next.
27+
validations:
28+
required: false

.github/ISSUE_TEMPLATE/feature_request.md

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

.github/workflows/validate-new-issue.yml

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

0 commit comments

Comments
 (0)