Skip to content

Commit 37d4f8f

Browse files
committed
update: converted issue template to .yml
1 parent 039793d commit 37d4f8f

File tree

2 files changed

+62
-24
lines changed

2 files changed

+62
-24
lines changed

.github/ISSUE_TEMPLATE.md

Lines changed: 0 additions & 24 deletions
This file was deleted.

.github/ISSUE_TEMPLATE/issue.yml

Lines changed: 62 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,62 @@
1+
name: "Issue Report"
2+
description: Report a problem, false positive, or suggestion.
3+
title: "<title>"
4+
labels: ["needs-triage"]
5+
6+
body:
7+
- type: checkboxes
8+
id: source
9+
attributes:
10+
label: "Source info"
11+
options:
12+
- label: This is from the latest commit in the main branch
13+
- label: This is from the latest release
14+
- label: Other
15+
validations:
16+
required: true
17+
18+
- type: checkboxes
19+
id: issue-type
20+
attributes:
21+
label: "Issue type"
22+
options:
23+
- label: False positive
24+
- label: Compilation warning/error
25+
- label: Suggestion
26+
- label: Other
27+
validations:
28+
required: true
29+
30+
- type: checkboxes
31+
id: environment
32+
attributes:
33+
label: "Environment"
34+
options:
35+
- label: Windows
36+
- label: Linux
37+
- label: MacOS
38+
- label: Other
39+
validations:
40+
required: true
41+
42+
- type: textarea
43+
id: description
44+
attributes:
45+
label: "Description"
46+
description: Provide a clear and explicit description of the issue.
47+
placeholder: Describe the issue briefly...
48+
validations:
49+
required: true
50+
51+
- type: textarea
52+
id: cli-output
53+
attributes:
54+
label: "CLI output (if possible)"
55+
description: >
56+
It is highly recommended to paste the full output using the debug
57+
binary from the latest release (e.g. vmaware_debug_X.X.X.exe).
58+
If compiling from main, ensure you pass -DCMAKE_BUILD_TYPE=Debug.
59+
If the CLI output doesn't apply to your issue, ignore this.
60+
render: bash
61+
validations:
62+
required: false

0 commit comments

Comments
 (0)