Skip to content

feat: simplified the titles of issue templates #744

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
wants to merge 1 commit into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/ISSUE_TEMPLATE/01-bug.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,5 +29,5 @@ body:
description: Report a bug trying to run the code
labels:
- "type: bug"
name: 🐛 Report a Bug
name: 🐛 Bug
title: "🐛 Bug: <short description of the bug>"
2 changes: 1 addition & 1 deletion .github/ISSUE_TEMPLATE/03-feature.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,5 +23,5 @@ body:
description: Request that a new feature be added or an existing feature improved
labels:
- "type: feature"
name: 🚀 Request a Feature
name: 🚀 Feature
title: "🚀 Feature: <short description of the feature>"
4 changes: 2 additions & 2 deletions src/steps/writing/creation/dotGitHub/issueTemplate.ts
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ export function createDotGitHubIssueTemplate({
],
description: "Report a bug trying to run the code",
labels: ["type: bug"],
name: "🐛 Report a Bug",
name: "🐛 Bug",
title: "🐛 Bug: <short description of the bug>",
}),
"02-documentation.yml": formatYaml({
Expand Down Expand Up @@ -154,7 +154,7 @@ export function createDotGitHubIssueTemplate({
description:
"Request that a new feature be added or an existing feature improved",
labels: ["type: feature"],
name: "🚀 Request a Feature",
name: "🚀 Feature",
title: "🚀 Feature: <short description of the feature>",
}),
"04-tooling.yml": formatYaml({
Expand Down