Skip to content

Commit ba6ffc7

Browse files
feat: simplified issue template titles (#745)
<!-- 👋 Hi, thanks for sending a PR to create-typescript-app! 💖. Please fill out all fields below and make sure each item is true and [x] checked. Otherwise we may not be able to review your PR. --> ## PR Checklist - [x] Addresses an existing open issue: fixes #707 - [x] That issue was marked as [`status: accepting prs`](https://github.com/JoshuaKGoldberg/create-typescript-app/issues?q=is%3Aopen+is%3Aissue+label%3A%22status%3A+accepting+prs%22) - [x] Steps in [CONTRIBUTING.md](https://github.com/JoshuaKGoldberg/create-typescript-app/blob/main/.github/CONTRIBUTING.md) were taken ## Overview <!-- Description of what is changed and how the code change does that. --> simplified issue template titles
1 parent 6ff1191 commit ba6ffc7

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

.github/ISSUE_TEMPLATE/01-bug.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,5 +29,5 @@ body:
2929
description: Report a bug trying to run the code
3030
labels:
3131
- "type: bug"
32-
name: 🐛 Report a Bug
32+
name: 🐛 Bug
3333
title: "🐛 Bug: <short description of the bug>"

.github/ISSUE_TEMPLATE/03-feature.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,5 +23,5 @@ body:
2323
description: Request that a new feature be added or an existing feature improved
2424
labels:
2525
- "type: feature"
26-
name: 🚀 Request a Feature
26+
name: 🚀 Feature
2727
title: "🚀 Feature: <short description of the feature>"

src/steps/writing/creation/dotGitHub/issueTemplate.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ export function createDotGitHubIssueTemplate({
6161
],
6262
description: "Report a bug trying to run the code",
6363
labels: ["type: bug"],
64-
name: "🐛 Report a Bug",
64+
name: "🐛 Bug",
6565
title: "🐛 Bug: <short description of the bug>",
6666
}),
6767
"02-documentation.yml": formatYaml({
@@ -154,7 +154,7 @@ export function createDotGitHubIssueTemplate({
154154
description:
155155
"Request that a new feature be added or an existing feature improved",
156156
labels: ["type: feature"],
157-
name: "🚀 Request a Feature",
157+
name: "🚀 Feature",
158158
title: "🚀 Feature: <short description of the feature>",
159159
}),
160160
"04-tooling.yml": formatYaml({

0 commit comments

Comments
 (0)