authorgravatar for andrew@ziglang.orgAndrew Kelley <andrew@ziglang.org> 2021-10-06 17:16:18-07:00
committergravatar for andrew@ziglang.orgAndrew Kelley <andrew@ziglang.org> 2021-10-06 17:16:18-07:00
logc3ce3a67adadc5fecd8f6840cba71c52c4cdc9bf
tree14df19f09e3ff44c3b44c6b0789873b4aa1185c8
parente16ddad49f1b3e4ce10ce8fb653e48f24a9d4837

GitHub: add issue templates for bugs and proposals


2 files changed, 60 insertions(+), 0 deletions(-)

.github/ISSUE_TEMPLATE/bug.yml created+44
...@@ -0,0 +1,44 @@
1name: Bug Report
2description: File a bug report
3labels: ["bug"]
4body:
5 - type: markdown
6 attributes:
7 value: |
8 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
16 - type: input
17 id: version
18 attributes:
19 label: Zig Version
20 description: The output of `zig version`:
21 placeholder: "0.9.0-dev.1275+ac52e0056"
22 validations:
23 required: true
24 - type: textarea
25 id: repro
26 attributes:
27 label: Steps to Reproduce
28 description: What exactly can someone else do, in order to observe the problem that you observed?
29 validations:
30 required: true
31 - type: textarea
32 id: expected
33 attributes:
34 label: Expected Behavior
35 description: What did you expect to happen?
36 validations:
37 required: true
38 - type: textarea
39 id: actual
40 attributes:
41 label: Actual Behavior
42 description: What happened instead? Be sure to include all error messages if any.
43 validations:
44 required: true
.github/ISSUE_TEMPLATE/proposal.yml created+16
...@@ -0,0 +1,16 @@
1name: Language Proposal
2description: Propose to improve the Zig language
3labels: ["proposal"]
4body:
5 - type: markdown
6 attributes:
7 value: |
8 Thank you for your interest in improving the Zig language. However, we are
9 not accepting new proposals to change the language at this time.
10 - type: checkboxes
11 id: trash
12 attributes:
13 label: Please do not file a proposal to change the language
14 options:
15 - label: After clicking this box, please navigate away from this web page.
16 required: true