Skip to content

Commit f331726

Browse files
authored
feat: issue templates (#1963)
1 parent 36ff00e commit f331726

File tree

5 files changed

+98
-42
lines changed

5 files changed

+98
-42
lines changed

.github/ISSUE_TEMPLATE/bug_report.md

Lines changed: 0 additions & 20 deletions
This file was deleted.
Lines changed: 68 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,68 @@
1+
name: '🐞 Bug Report'
2+
description: Report a bug in Task.
3+
labels: ['state: needs-triage']
4+
body:
5+
- type: markdown
6+
attributes:
7+
value: |
8+
Thanks for your bug report!
9+
10+
Before submitting, please check the list of [existing issues](https://github.com/go-task/task/issues) and make sure the same bug was not already reported by someone else.
11+
12+
- type: textarea
13+
id: description
14+
attributes:
15+
label: Description
16+
description: Describe the bug you're seeing.
17+
placeholder: |
18+
- What did you do?
19+
- What did you expect to happen?
20+
- What happened instead?
21+
validations:
22+
required: true
23+
24+
- type: input
25+
id: version
26+
attributes:
27+
label: Version
28+
description: What version(s) of Task is the issue occurring on?
29+
validations:
30+
required: true
31+
32+
- type: input
33+
id: os
34+
attributes:
35+
label: Operating system
36+
description: What operating system(s) is the issue occurring on?
37+
validations:
38+
required: true
39+
40+
- type: dropdown
41+
id: experiments
42+
attributes:
43+
label: Experiments Enabled
44+
description: Do you have any of the following experiments enabled?
45+
multiple: true
46+
options:
47+
- Env Precedence
48+
- Gentle Force
49+
- Map Variables
50+
- Remote Taskfiles
51+
validations:
52+
required: false
53+
54+
- type: textarea
55+
id: logs
56+
attributes:
57+
label: Example Taskfile
58+
description: |
59+
If you have a Taskfile that reproduces the issue, please paste it here.
60+
This will be automatically formatted into code, so no need for backticks.
61+
render: YAML
62+
placeholder: |
63+
version: '3'
64+
65+
tasks:
66+
default:
67+
cmds:
68+
- 'echo "This Taskfile is buggy :("'

.github/ISSUE_TEMPLATE/config.yml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
blank_issues_enabled: false
22
contact_links:
3-
- name: Extension for Visual Studio Code
3+
- name: '🔌 Task for Visual Studio Code'
44
url: https://github.com/go-task/vscode-task
5-
about: Issues related to the Visual Studio Code extension should be opened here.
6-
- name: Help forum on Discord
7-
url: https://discord.gg/6TY36E39UK
8-
about: 'The Discord #help channel is the best way to get help from the community.'
9-
- name: Questions, Ideas and General Discussions
5+
about: 'Issues related to the Visual Studio Code extension should be opened here.'
6+
- name: '💬 Help forum on Discord'
7+
url: https://discord.com/channels/974121106208354339/1025054680289660989
8+
about: 'The #help channel on our Discord is the best way to get help from the community.'
9+
- name: 'Questions, Ideas and General Discussions'
1010
url: https://github.com/go-task/task/discussions
11-
about: Ask questions and discuss general ideas with the community.
11+
about: 'Ask questions and discuss general ideas with the community.'

.github/ISSUE_TEMPLATE/feature_request.md

Lines changed: 0 additions & 15 deletions
This file was deleted.
Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
name: '✨ Feature Request'
2+
description: Suggest a new feature or enhancement for Task.
3+
labels: ['state: needs-triage']
4+
body:
5+
- type: markdown
6+
attributes:
7+
value: |
8+
Thanks for your feature request!
9+
10+
Before submitting, please check the list of [existing issues](https://github.com/go-task/task/issues) and make sure the same change was not already requested by someone else.
11+
If your request is more of an idea than a feature request, consider opening a [discussion](https://github.com/go-task/task/discussions) instead.
12+
13+
- type: textarea
14+
id: description
15+
attributes:
16+
label: Description
17+
description: Describe the feature/enhancement you want to see in Task.
18+
placeholder: |
19+
- Give a general overview of the feature/enhancement.
20+
- Explain problem is the change trying to solve.
21+
- Give examples of how you would use the feature.
22+
validations:
23+
required: true

0 commit comments

Comments
 (0)