authorgravatar for git@vexu.euVeikka Tuominen <git@vexu.eu> 2022-11-11 18:15:13+02:00
committergravatar for git@vexu.euVeikka Tuominen <git@vexu.eu> 2022-11-11 18:15:13+02:00
log4f285d4dacac82794ab71cc21c5ebf6bc6d6c48b
treef2e0b539264402351094118224ae185f1ded16f6
parent2897641fb95a614ae61a444e43a0555804701910

GitHub: add issue template for error messages


1 files changed, 26 insertions(+), 0 deletions(-)

.github/ISSUE_TEMPLATE/error_message.yml created+26
......@@ -0,0 +1,26 @@
1name: Error message improvement
2description: Compiler produces an unhelpful or misleading error message.
3labels: ["error message"]
4body:
5 - type: input
6 id: version
7 attributes:
8 label: Zig Version
9 description: "The output of `zig version`"
10 placeholder: "0.11.0-dev.146+2897641fb"
11 validations:
12 required: true
13 - type: textarea
14 id: repro
15 attributes:
16 label: Steps to Reproduce and Observed Output
17 description: A complete list of steps to reproduce the error message.
18 validations:
19 required: true
20 - type: textarea
21 id: expected
22 attributes:
23 label: Expected Output
24 description: What information do expect the error message to include?
25 validations:
26 required: true