diff options
| author | Andrew Kelley <andrew@ziglang.org> | 2021-10-06 17:16:18 -0700 |
|---|---|---|
| committer | Andrew Kelley <andrew@ziglang.org> | 2021-10-06 17:16:18 -0700 |
| commit | c3ce3a67adadc5fecd8f6840cba71c52c4cdc9bf (patch) | |
| tree | 14df19f09e3ff44c3b44c6b0789873b4aa1185c8 /.github | |
| parent | e16ddad49f1b3e4ce10ce8fb653e48f24a9d4837 (diff) | |
| download | zig-c3ce3a67adadc5fecd8f6840cba71c52c4cdc9bf.tar.gz zig-c3ce3a67adadc5fecd8f6840cba71c52c4cdc9bf.zip | |
GitHub: add issue templates for bugs and proposals
Diffstat (limited to '.github')
| -rw-r--r-- | .github/ISSUE_TEMPLATE/bug.yml | 44 | ||||
| -rw-r--r-- | .github/ISSUE_TEMPLATE/proposal.yml | 16 |
2 files changed, 60 insertions, 0 deletions
diff --git a/.github/ISSUE_TEMPLATE/bug.yml b/.github/ISSUE_TEMPLATE/bug.yml new file mode 100644 index 0000000000..303036c771 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/bug.yml @@ -0,0 +1,44 @@ +name: Bug Report +description: File a bug report +labels: ["bug"] +body: + - type: markdown + attributes: + value: | + A bug is when something works differently than it is expected to. + - type: checkboxes + id: searched + attributes: + label: Remember to search before filing a new report + options: + - 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. + required: true + - type: input + id: version + attributes: + label: Zig Version + description: The output of `zig version`: + placeholder: "0.9.0-dev.1275+ac52e0056" + validations: + required: true + - type: textarea + id: repro + attributes: + label: Steps to Reproduce + description: What exactly can someone else do, in order to observe the problem that you observed? + validations: + required: true + - type: textarea + id: expected + attributes: + label: Expected Behavior + description: What did you expect to happen? + validations: + required: true + - type: textarea + id: actual + attributes: + label: Actual Behavior + description: What happened instead? Be sure to include all error messages if any. + validations: + required: true diff --git a/.github/ISSUE_TEMPLATE/proposal.yml b/.github/ISSUE_TEMPLATE/proposal.yml new file mode 100644 index 0000000000..946d94cdec --- /dev/null +++ b/.github/ISSUE_TEMPLATE/proposal.yml @@ -0,0 +1,16 @@ +name: Language Proposal +description: Propose to improve the Zig language +labels: ["proposal"] +body: + - type: markdown + attributes: + value: | + Thank you for your interest in improving the Zig language. However, we are + not accepting new proposals to change the language at this time. + - type: checkboxes + id: trash + attributes: + label: Please do not file a proposal to change the language + options: + - label: After clicking this box, please navigate away from this web page. + required: true |
