Skip to content

Commit 0a2594f

Browse files
committed
Add issue template and issue template config
1 parent fa45efa commit 0a2594f

File tree

2 files changed

+110
-0
lines changed

2 files changed

+110
-0
lines changed
Lines changed: 109 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,109 @@
1+
name: Bug
2+
description: File a bug/issue
3+
title: "[BUG] <title>"
4+
body:
5+
- type: markdown
6+
attributes:
7+
value: "## Thank you for reporting an issue!"
8+
- type: checkboxes
9+
attributes:
10+
label: Does an issue for this already exist?
11+
description: Please search to see if an issue already exists for the bug you encountered.
12+
options:
13+
- label: I have searched the existing issues
14+
- label: I have ensured my environment (operating system, app launcher, etc) is up to date
15+
required: true
16+
- type: input
17+
id: distro
18+
attributes:
19+
label: Operating System and Version
20+
description: What is your Linux Distro? What version?
21+
placeholder: Debian, Void, Gentoo, etc.
22+
validations:
23+
required: true
24+
- type: dropdown
25+
id: install
26+
attributes:
27+
label: App Installation
28+
description: How is the app installed?
29+
multiple: false
30+
options:
31+
- AppImage
32+
- Source Compilation
33+
- Other
34+
default: 0
35+
validations:
36+
required: true
37+
- type: input
38+
id: other-install
39+
attributes:
40+
label: Other Install
41+
description: Please tell us how the app was installed
42+
- type: input
43+
attributes:
44+
label: Build Version
45+
description: What version of Graphite2D?
46+
placeholder: 1.x, 2.x
47+
validations:
48+
required: true
49+
- type: input
50+
id: de-wm
51+
attributes:
52+
label: Desktop Environment
53+
description: What is your Desktop Environment/Window Manager?
54+
placeholder: GNOME, KDE, SwayWM, niri, etc.
55+
validations:
56+
required: true
57+
- type: textarea
58+
id: description
59+
attributes:
60+
label: Description
61+
description: Please describe the issue as cleary as you can.
62+
validations:
63+
required: true
64+
- type: textarea
65+
id: steps
66+
attributes:
67+
label: Steps to reproduce
68+
description: Please list each step taken to reproduce the bug.
69+
placeholder: |
70+
1. First I install...
71+
2. Then I run...
72+
3. Next I click...
73+
...
74+
validations:
75+
required: true
76+
- type: textarea
77+
id: expected
78+
attributes:
79+
label: Expected behaviour
80+
description: Please describe what you expect to happen.
81+
validations:
82+
required: true
83+
- type: textarea
84+
id: screenshots
85+
attributes:
86+
label: Screenshots
87+
description: Paste or attach any relevant screenshots or videos here.
88+
validations:
89+
required: true
90+
- type: textarea
91+
id: logs
92+
attributes:
93+
label: Logs
94+
description: Paste or attach any relevant logs or errors here.
95+
render: shell
96+
validations:
97+
required: true
98+
- type: textarea
99+
id: config
100+
attributes:
101+
label: Config
102+
description: Paste or attach any relevant config files here.
103+
- type: checkboxes
104+
id: self-service
105+
attributes:
106+
label: Self-service
107+
description: "Would you be willing to fix this issue yourself?"
108+
options:
109+
- label: I'd be willing to fix this issue myself.

.github/ISSUE_TEMPLATE/config.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
blank_issues_enabled: true

0 commit comments

Comments
 (0)