Skip to content

Commit 0ea65a7

Browse files
committed
feat: add bug.yml issue template
1 parent 60d3f81 commit 0ea65a7

File tree

1 file changed

+41
-0
lines changed

1 file changed

+41
-0
lines changed

.github/ISSUE_TEMPLATE/bug.yml

Lines changed: 41 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,41 @@
1+
name: Bug
2+
description: File a bug report
3+
title: "[BUG]: "
4+
labels: ["Type: Bug", "Status: Triage"]
5+
body:
6+
- type: markdown
7+
attributes:
8+
value: |
9+
Thanks for taking the time to fill out this bug report!
10+
- type: textarea
11+
id: what-happened
12+
attributes:
13+
label: What happened?
14+
description: What did you do? What happened? What did you expect to happen?
15+
placeholder: Put your description of the bug here.
16+
validations:
17+
required: true
18+
- type: textarea
19+
id: versions
20+
attributes:
21+
label: Versions
22+
description: What versions of the relevant software are you running?
23+
placeholder: Octokit.js v2.0.10, Node v16.18.0
24+
validations:
25+
required: true
26+
- type: textarea
27+
id: logs
28+
attributes:
29+
label: Relevant log output
30+
description: |
31+
Please copy and paste any relevant log output. This will be automatically formatted into code, so no need for backticks.
32+
Please check your logs before submission to ensure sensitive information is redacted.
33+
render: shell
34+
- type: checkboxes
35+
id: terms
36+
attributes:
37+
label: Code of Conduct
38+
description: By submitting this issue, you agree to follow our [Code of Conduct](CODE_OF_CONDUCT.md)
39+
options:
40+
- label: I agree to follow this project's Code of Conduct
41+
required: true

0 commit comments

Comments
 (0)