Skip to content

Commit a38be60

Browse files
authoredJan 28, 2025··
Issue template for reporting bugs (#93)
Signed-off-by: Mark Rossetti <marosset@microsoft.com>
1 parent 05ad289 commit a38be60

File tree

1 file changed

+80
-0
lines changed

1 file changed

+80
-0
lines changed
 

‎.github/ISSUE_TEMPLATE/bug.yaml

+80
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,80 @@
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: bug-steps-to-reproduce
28+
attributes:
29+
label: Steps to reproduce the behavior
30+
description: |
31+
Steps to reproduce the behavior:
32+
placeholder: |
33+
1. Run '...'
34+
2. and then do '...'
35+
3. Check logs for '...'
36+
validations:
37+
required: true
38+
39+
- type: textarea
40+
id: hyperlight-version
41+
attributes:
42+
label: Hyperlight Version
43+
description: The version of Hyperlight you are using.
44+
placeholder: 0.1.0
45+
validations:
46+
required: true
47+
48+
- type: textarea
49+
id: os-version
50+
attributes:
51+
label: OS version
52+
description: The version of the OS you are using.
53+
value: |
54+
<details>
55+
56+
```console
57+
On Linux:
58+
$ cat /etc/os-release
59+
# paste output here
60+
61+
$ uname -a
62+
# paste output here
63+
64+
On Windows:
65+
C:\> cmd /c ver
66+
# paste output here
67+
68+
````
69+
</details>
70+
validations:
71+
required: true
72+
73+
- type: textarea
74+
id: additional-info
75+
attributes:
76+
label: Additional Information
77+
description: Add any other context about the problem here.
78+
placeholder: Add any other context about the problem here.
79+
validations:
80+
required: false

0 commit comments

Comments
 (0)
Please sign in to comment.