Skip to content

Commit b9ef5d2

Browse files
authored
Merge pull request #362 from NASA-Openscapes/add-bug-issue-template
Create bug.yml
2 parents fb0871f + f8c7816 commit b9ef5d2

File tree

1 file changed

+67
-0
lines changed

1 file changed

+67
-0
lines changed

.github/ISSUE_TEMPLATE/bug.yml

Lines changed: 67 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,67 @@
1+
name: 🐞 Bug
2+
description: >
3+
A bug is an issue that differs from documentation or has unexpected behavior.
4+
title: "[BUG] {{ title }}"
5+
labels:
6+
- Bug
7+
- Needs Triage
8+
body:
9+
- type: checkboxes
10+
attributes:
11+
label: Is this issue already tracked somewhere, or is this a new report?
12+
description: Check if a similar issue has already been reported before submitting a new one.
13+
options:
14+
- label: I've reviewed existing issues and couldn't find a duplicate for this problem.
15+
required: true
16+
17+
- type: textarea
18+
attributes:
19+
label: Current Behavior
20+
description: A concise description of what you're experiencing.
21+
validations:
22+
required: true
23+
24+
- type: textarea
25+
attributes:
26+
label: Expected Behavior
27+
description: A concise description of what you expected to happen.
28+
validations:
29+
required: true
30+
31+
- type: textarea
32+
attributes:
33+
label: Steps To Reproduce
34+
description: |
35+
Steps to Reproduce
36+
1. In this environment...
37+
2. With this config...
38+
3. Run '...'
39+
4. See error...
40+
validations:
41+
required: true
42+
43+
- type: textarea
44+
attributes:
45+
label: Environment
46+
description: |
47+
Examples:
48+
- **OS**: Ubuntu 20.04
49+
- **Python**: 3.11.2
50+
value: |
51+
- OS:
52+
- Python:
53+
render: markdown
54+
validations:
55+
required: true
56+
57+
- type: textarea
58+
attributes:
59+
label: Additional Context
60+
description: |
61+
Any additional information that might be helpful in resolving this issue, such as:
62+
- Error messages or stack traces
63+
- Relevant configuration files or code snippets
64+
65+
Tip: You can attach files or images by clicking this area to highlight it and then dragging files in.
66+
validations:
67+
required: false

0 commit comments

Comments
 (0)