| ... | @@ -0,0 +1,44 @@ |
| 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 | - 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 |