Skip to content

Commit becb839

Browse files
committed
feat: add maintenance.yml issue template
1 parent bedb693 commit becb839

File tree

1 file changed

+49
-0
lines changed

1 file changed

+49
-0
lines changed
Lines changed: 49 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,49 @@
1+
name: Maintenance
2+
description: Dependencies, cleanup, refactoring, reworking of code
3+
title: "[MAINT]: "
4+
labels: ["Type: Maintenance", "Status: Triage"]
5+
body:
6+
- type: markdown
7+
attributes:
8+
value: |
9+
Thanks for taking the time to fill this out!
10+
- type: textarea
11+
id: describe-need
12+
attributes:
13+
label: Describe the need
14+
description: What do you want to happen?
15+
placeholder: Describe the maintenance need here.
16+
validations:
17+
required: true
18+
- type: input
19+
id: sdk_version
20+
attributes:
21+
label: SDK Version
22+
description: Does this maintenance apply to a specific SDK version?
23+
placeholder: terraform-provider-github v5.7.0
24+
validations:
25+
required: false
26+
- type: input
27+
id: api_version
28+
attributes:
29+
label: API Version
30+
description: Does this maintenance apply to a specific version of the GitHub REST API or GraphQL API?
31+
placeholder: ex. v1.1.1
32+
validations:
33+
required: false
34+
- type: textarea
35+
id: logs
36+
attributes:
37+
label: Relevant log output
38+
description: |
39+
Please copy and paste any relevant log output. This will be automatically formatted into code, so no need for backticks.
40+
Please check your logs before submission to ensure sensitive information is redacted.
41+
render: shell
42+
- type: checkboxes
43+
id: terms
44+
attributes:
45+
label: Code of Conduct
46+
description: By submitting this issue, you agree to follow our [Code of Conduct](CODE_OF_CONDUCT.md)
47+
options:
48+
- label: I agree to follow this project's Code of Conduct
49+
required: true

0 commit comments

Comments
 (0)