Skip to content

Commit ba9ba63

Browse files
committed
GitHub: Improving our issue & PR templates
1 parent 460b89c commit ba9ba63

File tree

6 files changed

+77
-25
lines changed

6 files changed

+77
-25
lines changed

.github/ISSUE_TEMPLATE/bug_report.md

Lines changed: 0 additions & 13 deletions
This file was deleted.
Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
1+
name: Bug Report
2+
description: Use this to report bugs and issues.
3+
body:
4+
- type: markdown
5+
attributes:
6+
value: |
7+
Thanks for your bug report!
8+
9+
Before submitting this issue, please make sure the same problem was
10+
not already reported by someone else.
11+
- type: input
12+
id: version
13+
attributes:
14+
label: Task version
15+
description: Which Task version you are using? Use `task --version` to know.
16+
placeholder: v0.0.0
17+
validations:
18+
required: false
19+
- type: input
20+
id: os
21+
attributes:
22+
label: Operating System
23+
description: Which operating system you are using?
24+
placeholder: Ubuntu 22.04.1
25+
validations:
26+
required: false
27+
- type: textarea
28+
id: description
29+
attributes:
30+
label: Description
31+
description: |
32+
Please describe the bug you're facing. Consider pasting example
33+
Taskfiles showing how to reproduce the problem.
34+
placeholder: You description here.
35+
validations:
36+
required: true

.github/ISSUE_TEMPLATE/config.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
blank_issues_enabled: false
22
contact_links:
3+
- name: Help forum on Discord
4+
url: https://discord.com/channels/974121106208354339/1025054680289660989
5+
about: 'The Discord #help channel is the best way to get help from the community.'
36
- name: Questions, Ideas and General Discussions
47
url: https://github.com/go-task/task/discussions
5-
about: Ask questions and discuss general ideas with the community
8+
about: Ask questions and discuss general ideas with the community.

.github/ISSUE_TEMPLATE/feature_request.md

Lines changed: 0 additions & 11 deletions
This file was deleted.
Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
name: Bug Report
2+
description: Use this to make feature requests.
3+
body:
4+
- type: textarea
5+
id: description
6+
attributes:
7+
label: Description
8+
description: |
9+
Describe in detail what feature do you want to see in Task.
10+
Give examples if possible.
11+
12+
Please, search if this wasn't proposed before, and if this is more like an idea
13+
than a strong feature request, consider opening a
14+
[discussion](https://github.com/go-task/task/discussions) instead.
15+
placeholder: You description here.
16+
validations:
17+
required: true
Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
name: Pull Request
2+
description: Open a pull request.
3+
body:
4+
- type: markdown
5+
attributes:
6+
value: |
7+
Thanks for your pull request, we really appreciate contributions!
8+
9+
Please understand that it may take some time to be reviewed.
10+
11+
Also, make sure to follow the [Contribution Guide](https://taskfile.dev/contributing/).
12+
- type: textarea
13+
id: description
14+
attributes:
15+
label: Description
16+
description: |
17+
Describe the PR you're opening.
18+
placeholder: You description here.
19+
validations:
20+
required: true

0 commit comments

Comments
 (0)