Skip to content

Commit 99ac618

Browse files
committed
feat: issue templates
1 parent f02f16c commit 99ac618

File tree

3 files changed

+83
-0
lines changed

3 files changed

+83
-0
lines changed

.github/ISSUE_TEMPLATE/bug-report.yml

+50
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,50 @@
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: dropdown
23+
id: os
24+
attributes:
25+
label: Operating System
26+
description: What is the affected operating system?
27+
options:
28+
- "Microsoft Windows"
29+
- "Apple macOS"
30+
- "Linux"
31+
validations:
32+
required: true
33+
- type: textarea
34+
id: reproduce
35+
attributes:
36+
label: Steps to reproduce
37+
description: |
38+
This includes the steps for reproducing the problem, the expected result, and the actual result.
39+
placeholder: |
40+
1. ...
41+
2. ...
42+
3. ...
43+
validations:
44+
required: true
45+
- type: textarea
46+
id: logs
47+
attributes:
48+
label: Relevant log output
49+
description: Please copy and paste any relevant log output. This will be automatically formatted into code, so no need for backticks.
50+
render: Shell

.github/ISSUE_TEMPLATE/config.yml

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
blank_issues_enabled: false
2+
contact_links:
3+
- name: Twitch Dev Discord
4+
url: https://link.twitch.tv/devchat
5+
about: Chat with the developer community on Discord.
+28
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

0 commit comments

Comments
 (0)