blob: 7c58f775ffe16c46a895f1134d547b485cb74bfd (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
|
name: Bug report
description: Create a bug report
labels:
- bug
body:
- type: markdown
attributes:
value: |
# A bug means something doesn't work as expected
Remember to include as much detail as possible.
- type: input
id: commit
attributes:
label: zig-sqlite commit
description: "The git commit of zig-sqlite"
validations:
required: true
- type: input
id: zig_version
attributes:
label: Zig version
description: "The output of `zig version`"
placeholder: "0.11.0-dev.3335+3085e2af4"
validations:
required: true
- type: textarea
id: repro
attributes:
label: Steps to reproduce
description: How can someone reproduce the problem you encountered ? Include a self-contained reproducer if possible
validations:
required: true
- type: textarea
id: expected
attributes:
label: Expected behaviour
description: What did you expect to happen?
validations:
required: true
|