Skip to content

Commit cf794b5

Browse files
authored
Get more data from users in issue templates (#1497)
1 parent ddbf7cd commit cf794b5

File tree

1 file changed

+28
-2
lines changed

1 file changed

+28
-2
lines changed

.github/ISSUE_TEMPLATE/problem-report.yml

Lines changed: 28 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,39 @@ name: 🐞 Problem Report
22
description: Tell us about something that's not working the way you expect.
33
body:
44
- type: input
5-
id: version
5+
id: self_hosted_version
66
attributes:
7-
label: Version
7+
label: Self-Hosted Version
88
placeholder: 21.7.0 ← should look like this (check the footer)
99
description: What version of self-hosted Sentry are you running?
1010
validations:
1111
required: true
12+
- type: input
13+
id: cpu_architecture
14+
attributes:
15+
label: CPU Architecture
16+
placeholder: x86_64 ← should look like this (docker info --format '{{.Architecture}}')
17+
description: What cpu architecture are you running self-hosted on?
18+
validations:
19+
required: true
20+
- type: input
21+
id: docker_version
22+
attributes:
23+
label: Docker Version
24+
placeholder: 20.10.16 ← should look like this (docker --version)
25+
description: What version of docker are you using to run self-hosted?
26+
validations:
27+
required: true
28+
- type: input
29+
id: docker_compose_version
30+
attributes:
31+
label: Docker Compose Version
32+
placeholder: 2.6.0 ← should look like this (docker compose --version)
33+
description: |
34+
What version of docker-compose are you using to run self-hosted?
35+
You need to use docker-compose --version if you are running < v2.0.0.
36+
validations:
37+
required: true
1238
- type: textarea
1339
id: repro
1440
attributes:

0 commit comments

Comments
 (0)