Skip to content

Commit 4984398

Browse files
fix: proper labels in issue templates
1 parent dd712f0 commit 4984398

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

.github/ISSUE_TEMPLATE/02-documentation.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
body:
22
- attributes:
33
description: If any of these required steps are not taken, we may not be able to review your issue. Help us to help you!
4-
label: Bug Report Checklist
4+
label: Documentation Report Checklist
55
options:
66
- label: I have pulled the latest `main` branch of the repository.
77
required: true

.github/ISSUE_TEMPLATE/03-feature.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
body:
22
- attributes:
33
description: If any of these required steps are not taken, we may not be able to review your issue. Help us to help you!
4-
label: Bug Report Checklist
4+
label: Feature Request Checklist
55
options:
66
- label: I have pulled the latest `main` branch of the repository.
77
required: true

.github/ISSUE_TEMPLATE/04-tooling.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
body:
22
- attributes:
33
description: If any of these required steps are not taken, we may not be able to review your issue. Help us to help you!
4-
label: Bug Report Checklist
4+
label: Tooling Report Checklist
55
options:
66
- label: I have tried restarting my IDE and the issue persists.
77
required: true

src/blocks/blockGitHubIssueTemplates.ts

+3-3
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ export const blockGitHubIssueTemplates = base.createBlock({
7575
attributes: {
7676
description:
7777
"If any of these required steps are not taken, we may not be able to review your issue. Help us to help you!",
78-
label: "Bug Report Checklist",
78+
label: "Documentation Report Checklist",
7979
options: [
8080
{
8181
label:
@@ -119,7 +119,7 @@ export const blockGitHubIssueTemplates = base.createBlock({
119119
attributes: {
120120
description:
121121
"If any of these required steps are not taken, we may not be able to review your issue. Help us to help you!",
122-
label: "Bug Report Checklist",
122+
label: "Feature Request Checklist",
123123
options: [
124124
{
125125
label:
@@ -164,7 +164,7 @@ export const blockGitHubIssueTemplates = base.createBlock({
164164
attributes: {
165165
description:
166166
"If any of these required steps are not taken, we may not be able to review your issue. Help us to help you!",
167-
label: "Bug Report Checklist",
167+
label: "Tooling Report Checklist",
168168
options: [
169169
{
170170
label:

0 commit comments

Comments
 (0)