Skip to content

Commit f5878a2

Browse files
authored
Chore: Add Issue (and PR) Templates (#692)
## What <!-- What is changing in this PR? --> * Add PR template * Add issue template ## Why <!-- Why are these changes being made? --> * Improve repo hygiene ## Notes <!-- Add any additional notes here -->
1 parent 79fc468 commit f5878a2

File tree

3 files changed

+55
-0
lines changed

3 files changed

+55
-0
lines changed

.github/ISSUE_TEMPLATE/bug.yaml

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
name: Bug Report
2+
description: File a bug report
3+
title: "[Bug]: "
4+
labels: ["bug", "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: Describe the bug in detail. What did you expect to happen? What actually happened?
15+
value: "A bug happened!"
16+
validations:
17+
required: true
18+
- type: textarea
19+
id: version
20+
attributes:
21+
label: Version
22+
description: What version of the CLI are you running?
23+
validations:
24+
required: true
25+
- type: textarea
26+
id: info
27+
attributes:
28+
label: Additional Information
29+
description: Please copy and paste any additional information we can use to reproduce the bug.
30+
render: shell

.github/ISSUE_TEMPLATE/feature.yaml

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
name: Feature Request
2+
description: Submit a feature request
3+
title: "[Feature]: "
4+
labels: ["enhancement"]
5+
body:
6+
- type: markdown
7+
attributes:
8+
value: |
9+
Thanks for taking the time to fill out this feature request!
10+
- type: textarea
11+
id: feature
12+
attributes:
13+
label: What would you like to be added?
14+
description: If applicable, add a mock CLI invocation for the new feature.
15+
value: "The following feature would be great!"
16+
validations:
17+
required: true

.github/PULL_REQUEST_TEMPLATE.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
## What
2+
<!-- What is changing in this PR? -->
3+
4+
## Why
5+
<!-- Why are these changes being made? -->
6+
7+
## Notes
8+
<!-- Add any additional notes here -->

0 commit comments

Comments
 (0)