summaryrefslogtreecommitdiff
path: root/.github/ISSUE_TEMPLATE
diff options
context:
space:
mode:
authorGravatar Vincent Rischmann2023-05-31 22:53:20 +0200
committerGravatar Vincent Rischmann2023-05-31 22:53:20 +0200
commit8aab286f72e24e10b33eeef29f480f17f218cf90 (patch)
tree3f99398d56a43816500e1a5bf975053958b844b8 /.github/ISSUE_TEMPLATE
parentUpdate issue templates (diff)
downloadzig-sqlite-8aab286f72e24e10b33eeef29f480f17f218cf90.tar.gz
zig-sqlite-8aab286f72e24e10b33eeef29f480f17f218cf90.tar.xz
zig-sqlite-8aab286f72e24e10b33eeef29f480f17f218cf90.zip
use the new issue template format
Diffstat (limited to '.github/ISSUE_TEMPLATE')
-rw-r--r--.github/ISSUE_TEMPLATE/bug_report.md17
-rw-r--r--.github/ISSUE_TEMPLATE/bug_report.yml43
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---
2name: Bug report
3about: Create a bug report
4title: ''
5labels: bug
6assignees: ''
7
8---
9
10**Describe the bug**
11A clear and concise description of what the bug is.
12
13**To Reproduce**
14Steps to reproduce the behavior:
15
16**Expected behavior**
17A 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 @@
1name: Bug report
2description: Create a bug report
3labels:
4 - bug
5
6body:
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