Skip to content
This repository was archived by the owner on Sep 17, 2024. It is now read-only.

Commit a2b81c0

Browse files
authored
Create bug_report.yaml
1 parent abdf817 commit a2b81c0

File tree

1 file changed

+68
-0
lines changed

1 file changed

+68
-0
lines changed
Lines changed: 68 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,68 @@
1+
name: Bug Report
2+
description: Report a bug in an existing OpenGB module
3+
title: "[BUG] "
4+
labels: ["bug"]
5+
assignees: []
6+
body:
7+
- type: input
8+
id: module
9+
attributes:
10+
label: Affected Module
11+
description: Which module is this bug related to?
12+
validations:
13+
required: true
14+
15+
- type: input
16+
id: version
17+
attributes:
18+
label: OpenGB Version
19+
description: Provide the output of `opengb --version`
20+
placeholder: e.g., 1.2.3
21+
validations:
22+
required: true
23+
24+
- type: textarea
25+
id: description
26+
attributes:
27+
label: Bug Description
28+
description: Provide a clear and concise description of the bug
29+
placeholder: When I try to... the module does... instead of...
30+
validations:
31+
required: true
32+
33+
- type: textarea
34+
id: reproduction-steps
35+
attributes:
36+
label: Steps to Reproduce
37+
description: List the steps to reproduce the behavior
38+
placeholder: |
39+
1. Go to '...'
40+
2. Click on '....'
41+
3. Scroll down to '....'
42+
4. See error
43+
validations:
44+
required: true
45+
46+
- type: textarea
47+
id: expected-behavior
48+
attributes:
49+
label: Expected Behavior
50+
description: Describe what you expected to happen
51+
placeholder: I expected the module to...
52+
validations:
53+
required: true
54+
55+
- type: textarea
56+
id: logs
57+
attributes:
58+
label: Relevant Log Output
59+
description: Please copy and paste any relevant log output. This will be automatically formatted into code, so no need for backticks.
60+
render: shell
61+
62+
- type: textarea
63+
id: additional-context
64+
attributes:
65+
label: Additional Context
66+
description: Add any other context about the problem here
67+
validations:
68+
required: false

0 commit comments

Comments
 (0)