diff options
| -rw-r--r-- | .github/ISSUE_TEMPLATE/bug_report.md | 17 | ||||
| -rw-r--r-- | .github/ISSUE_TEMPLATE/bug_report.yml | 43 |
2 files changed, 43 insertions, 17 deletions
diff --git a/.github/ISSUE_TEMPLATE/bug_report.md b/.github/ISSUE_TEMPLATE/bug_report.md deleted file mode 100644 index 3a2e766..0000000 --- a/.github/ISSUE_TEMPLATE/bug_report.md +++ /dev/null | |||
| @@ -1,17 +0,0 @@ | |||
| 1 | --- | ||
| 2 | name: Bug report | ||
| 3 | about: Create a bug report | ||
| 4 | title: '' | ||
| 5 | labels: bug | ||
| 6 | assignees: '' | ||
| 7 | |||
| 8 | --- | ||
| 9 | |||
| 10 | **Describe the bug** | ||
| 11 | A clear and concise description of what the bug is. | ||
| 12 | |||
| 13 | **To Reproduce** | ||
| 14 | Steps to reproduce the behavior: | ||
| 15 | |||
| 16 | **Expected behavior** | ||
| 17 | A clear and concise description of what you expected to happen. | ||
diff --git a/.github/ISSUE_TEMPLATE/bug_report.yml b/.github/ISSUE_TEMPLATE/bug_report.yml new file mode 100644 index 0000000..4f655ab --- /dev/null +++ b/.github/ISSUE_TEMPLATE/bug_report.yml | |||
| @@ -0,0 +1,43 @@ | |||
| 1 | name: Bug report | ||
| 2 | description: Create a bug report | ||
| 3 | labels: | ||
| 4 | - bug | ||
| 5 | |||
| 6 | body: | ||
| 7 | - type: markdown | ||
| 8 | attributes: | ||
| 9 | value: | | ||
| 10 | A clear and concise description of what the bug is. | ||
| 11 | |||
| 12 | - type: input | ||
| 13 | id: commit | ||
| 14 | attributes: | ||
| 15 | label: zig-sqlite commit | ||
| 16 | description: "The git commit of zig-sqlite" | ||
| 17 | validations: | ||
| 18 | required: true | ||
| 19 | |||
| 20 | - type: input | ||
| 21 | id: zig_version | ||
| 22 | attributes: | ||
| 23 | label: Zig version | ||
| 24 | description: "The output of `zig version`" | ||
| 25 | placeholder: "0.11.0-dev.3335+3085e2af4" | ||
| 26 | validations: | ||
| 27 | required: true | ||
| 28 | |||
| 29 | - type: textarea | ||
| 30 | id: repro | ||
| 31 | attributes: | ||
| 32 | label: Steps to reproduce | ||
| 33 | description: How can someone reproduce the problem you encountered ? Include a self-contained reproducer if possible | ||
| 34 | validations: | ||
| 35 | required: true | ||
| 36 | |||
| 37 | - type: textarea | ||
| 38 | id: expected | ||
| 39 | attributes: | ||
| 40 | label: Expected behaviour | ||
| 41 | description: What did you expect to happen? | ||
| 42 | validations: | ||
| 43 | required: true | ||