Skip to content

Commit 93a5bf0

Browse files
committed
Issue template for reporting bugs
1 parent 4937f1a commit 93a5bf0

File tree

1 file changed

+71
-0
lines changed

1 file changed

+71
-0
lines changed

.github/ISSUE_TEMPLATE/bug.yaml

Lines changed: 71 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,71 @@
1+
name: Bug Report
2+
3+
description: Report a bug in the project
4+
5+
labels:
6+
- bug
7+
8+
body:
9+
- type: textarea
10+
id: bug-description
11+
attributes:
12+
label: What happened?
13+
description: A clear and concise description of what the bug is.
14+
placeholder: Describe the bug here
15+
validations:
16+
required: true
17+
18+
- type: textarea
19+
id: bug-expected-behavior
20+
attributes:
21+
label: What did you expect to happen?
22+
description: A clear and concise description of what you expected to happen.
23+
validations:
24+
required: true
25+
26+
- type: textarea
27+
id: hyperlight-version
28+
attributes:
29+
label: Hyperlight Version
30+
description: The version of Hyperlight you are using.
31+
placeholder: 0.1.0
32+
validations:
33+
required: true
34+
35+
- type: textarea
36+
id: os-version
37+
attributes:
38+
label: OS version
39+
description: The version of the OS you are using.
40+
value: |
41+
<details>
42+
43+
```console
44+
On Linux:
45+
$ cat /etc/os-release
46+
# paste output here
47+
48+
$ cat /uname -a
49+
# paste output here
50+
51+
KVM version:
52+
$ /usr/bin/qemu-system-x86_64 --version
53+
# paste output here
54+
55+
On Windows:
56+
C:\> cmd /c ver
57+
# paste output here
58+
59+
````
60+
</details>
61+
validations:
62+
required: true
63+
64+
- type: textarea
65+
id: additional-info
66+
attributes:
67+
label: Additional Information
68+
description: Add any other context about the problem here.
69+
placeholder: Add any other context about the problem here.
70+
validations:
71+
required: false

0 commit comments

Comments
 (0)