bug.yml (1107B) - Raw
1 name: Bug Report 2 description: File a bug report 3 labels: ["bug"] 4 body: 5 - type: markdown 6 attributes: 7 value: | 8 A bug is when something works differently than it is expected to. 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. 12 - type: input 13 id: version 14 attributes: 15 label: Zig Version 16 description: "The output of `zig version`" 17 placeholder: "0.10.0-dev.4583+875e98a57" 18 validations: 19 required: true 20 - type: textarea 21 id: repro 22 attributes: 23 label: Steps to Reproduce and Observed Behavior 24 description: What exactly can someone else do, in order to observe the problem that you observed? Include the output and all error messages. 25 validations: 26 required: true 27 - type: textarea 28 id: expected 29 attributes: 30 label: Expected Behavior 31 description: What did you expect to happen instead? 32 validations: 33 required: true