authorgravatar for andrew@ziglang.orgAndrew Kelley <andrew@ziglang.org> 2021-11-30 14:42:37-07:00
committergravatar for andrew@ziglang.orgAndrew Kelley <andrew@ziglang.org> 2021-11-30 14:42:58-07:00
log04286e8c3b1a815488c73c011988eb4fa985202b
tree26683eb070f0b0fb57c670b24e4baec86624ba85
parent8635275202d4c6404a6e795f186e9aa4b260f869

github issues: add a honeypot template for questions


2 files changed, 23 insertions(+), 7 deletions(-)

.github/ISSUE_TEMPLATE/bug.yml+3-7
......@@ -6,13 +6,9 @@ body:
66 attributes:
77 value: |
88 A bug is when something works differently than it is expected to.
9 - type: checkboxes
10 id: searched
11 attributes:
12 label: Remember to search before filing a new report
13 options:
14 - label: I searched for this bug and did not find it in the issue tracker, and furthermore, the title I used above will make this new bug report turn up in the search results for my query.
15 required: true
9 ## Remember to search before filing a new report
10 Please search for this bug in the issue tracker, and use a bug report title that
11 would have made your bug report turn up in the search results for your search query.
1612 - type: input
1713 id: version
1814 attributes:
.github/ISSUE_TEMPLATE/question.yml created+20
......@@ -0,0 +1,20 @@
1name: Question
2description: Ask a Zig-related question
3labels: ["question"]
4body:
5 - type: markdown
6 attributes:
7 value: |
8 Welcome! There are a bunch of great places to ask Zig-related questions.
9 Please take a look at
10 [The Community Wiki Page](https://github.com/ziglang/zig/wiki/Community) and
11 find a comfy place to ask questions. You will find plenty of helpful people in
12 these spaces. However, this issue tracker is not for questions. It is for
13 more actionable items such as bug reports and enhancements.
14 - type: checkboxes
15 id: trash
16 attributes:
17 label: Please do not open a question issue on the bug tracker
18 options:
19 - label: "I understand, thank you. I will take my question to one of the community spaces instead"
20 required: true