Skip to content

Commit 9deee72

Browse files
committed
docs(github): add bug report issue template
1 parent 2686d6f commit 9deee72

1 file changed

Lines changed: 58 additions & 0 deletions

File tree

Lines changed: 58 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,58 @@
1+
name: Bug Report
2+
description: Something isn't working correctly
3+
labels: ["bug", "triage"]
4+
assignees: ["hamza-hafeez82"]
5+
6+
body:
7+
- type: markdown
8+
attributes:
9+
value: |
10+
Thanks for taking the time to report a bug. Please fill this out as completely as possible.
11+
12+
- type: input
13+
id: version
14+
attributes:
15+
label: Cortex version
16+
description: Run `cortex --version` and paste the output
17+
placeholder: "v0.1.0"
18+
validations:
19+
required: true
20+
21+
- type: input
22+
id: os
23+
attributes:
24+
label: Operating system
25+
placeholder: "macOS 14.4 / Ubuntu 22.04 / Windows 11"
26+
validations:
27+
required: true
28+
29+
- type: textarea
30+
id: description
31+
attributes:
32+
label: What happened?
33+
description: A clear description of the bug
34+
validations:
35+
required: true
36+
37+
- type: textarea
38+
id: expected
39+
attributes:
40+
label: What did you expect?
41+
validations:
42+
required: true
43+
44+
- type: textarea
45+
id: reproduce
46+
attributes:
47+
label: Steps to reproduce
48+
placeholder: |
49+
1. Run `cortex scan ./myrepo`
50+
2. ...
51+
validations:
52+
required: true
53+
54+
- type: textarea
55+
id: logs
56+
attributes:
57+
label: Relevant output or logs
58+
render: shell

0 commit comments

Comments
 (0)