Skip to content

Commit bbcc68c

Browse files
authored
Merge pull request #224 from SputNikPlop/issues
fix: add issues template
2 parents f02f16c + 8f8ead5 commit bbcc68c

4 files changed

Lines changed: 87 additions & 0 deletions

File tree

Lines changed: 53 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,53 @@
1+
name: Bug Report
2+
description: Found a bug? Please let us know!
3+
title: "[Bug]"
4+
labels: ["Bug"]
5+
body:
6+
- type: markdown
7+
attributes:
8+
value: |
9+
Please provide as much information as possible. This will help us resolve the Bug quickly and accurately.
10+
- type: markdown
11+
attributes:
12+
value: ---
13+
- type: textarea
14+
id: what-happened
15+
attributes:
16+
label: What is the problem?
17+
description: |
18+
Description of what needs to be fixed.
19+
placeholder: Tell us what you see!
20+
validations:
21+
required: true
22+
- type: input
23+
id: os
24+
attributes:
25+
label: Operating System
26+
description: What is the affected operating system?
27+
validations:
28+
required: true
29+
- type: input
30+
id: arch
31+
attributes:
32+
label: Architecture Version (x86, x64, arm, etc)
33+
description: (x86, x64, arm, etc)
34+
validations:
35+
required: true
36+
- type: textarea
37+
id: reproduce
38+
attributes:
39+
label: Steps to reproduce
40+
description: |
41+
This includes the steps for reproducing the problem, the expected result, and the actual result.
42+
placeholder: |
43+
1. ...
44+
2. ...
45+
3. ...
46+
validations:
47+
required: true
48+
- type: textarea
49+
id: logs
50+
attributes:
51+
label: Relevant log output
52+
description: Please copy and paste any relevant log output. This will be automatically formatted into code, so no need for backticks.
53+
render: shell

.github/ISSUE_TEMPLATE/config.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
blank_issues_enabled: true
2+
contact_links:
3+
- name: Twitch Dev Discord
4+
url: https://link.twitch.tv/devchat
5+
about: Chat with the developer community on Discord.
Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
name: Feature Request
2+
description: Suggest a new idea for the twitch-cli.
3+
title: "[Feature Request] "
4+
labels: ["enhancement"]
5+
body:
6+
- type: markdown
7+
attributes:
8+
value: |
9+
Please provide as much information as possible by filling out form below.
10+
- type: markdown
11+
attributes:
12+
value: ---
13+
- type: textarea
14+
id: idea
15+
attributes:
16+
label: Tell us about your feature request
17+
description: |
18+
Describe what you would like the Twitch CLI to be able to do.
19+
validations:
20+
required: true
21+
- type: checkboxes
22+
id: disclaimer
23+
attributes:
24+
label: Disclaimer
25+
description: I have verified that this has not been suggested before.
26+
options:
27+
- label: I agree
28+
required: true

.github/semantic.yml

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

0 commit comments

Comments
 (0)