zig

fork of https://codeberg.org/ziglang/zig
Log | Files | Refs | README | LICENSE

commit 4f285d4dacac82794ab71cc21c5ebf6bc6d6c48b (tree)
parent 2897641fb95a614ae61a444e43a0555804701910
Author: Veikka Tuominen <git@vexu.eu>
Date:   Fri, 11 Nov 2022 18:15:13 +0200

GitHub: add issue template for error messages

Diffstat:
A.github/ISSUE_TEMPLATE/error_message.yml | 26++++++++++++++++++++++++++
1 file changed, 26 insertions(+), 0 deletions(-)

diff --git a/.github/ISSUE_TEMPLATE/error_message.yml b/.github/ISSUE_TEMPLATE/error_message.yml @@ -0,0 +1,26 @@ +name: Error message improvement +description: Compiler produces an unhelpful or misleading error message. +labels: ["error message"] +body: + - type: input + id: version + attributes: + label: Zig Version + description: "The output of `zig version`" + placeholder: "0.11.0-dev.146+2897641fb" + validations: + required: true + - type: textarea + id: repro + attributes: + label: Steps to Reproduce and Observed Output + description: A complete list of steps to reproduce the error message. + validations: + required: true + - type: textarea + id: expected + attributes: + label: Expected Output + description: What information do expect the error message to include? + validations: + required: true