Skip to content
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

feat: add emoji to label descriptions #1013

Merged
merged 1 commit into from
Nov 15, 2023
Merged
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
20 changes: 10 additions & 10 deletions src/steps/initializeGitHubRepository/labels/outcomeLabels.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,23 +2,23 @@
export const outcomeLabels = [
{
color: "0075ca",
description: "Improvements or additions to docs",
description: "Improvements or additions to docs 📝",
name: "area: documentation",
},
{
color: "6009D7",
description:
"Improving how the repository's tests are run and/or code is tested",
"Improving how the repository's tests are run and/or code is tested 🧪",
name: "area: testing",
},
{
color: "f9d0c4",
description: "Managing the repository's maintenance",
description: "Managing the repository's maintenance 🛠️",
name: "area: tooling",
},
{
color: "5319E7",
description: "Good for newcomers, please hop on!",
description: "Good for newcomers, please hop on! 🙌",
name: "good first issue",
},
{
Expand All @@ -28,7 +28,7 @@ export const outcomeLabels = [
},
{
color: "0E8A16",
description: "Please, send a pull request to resolve this!",
description: "Please, send a pull request to resolve this! 🙏",
name: "status: accepting prs",
},
{
Expand All @@ -38,7 +38,7 @@ export const outcomeLabels = [
},
{
color: "#ddcccc",
description: "Waiting for something else to be resolved",
description: "Waiting for something else to be resolved 🙅",
name: "status: blocked",
},
{
Expand All @@ -53,7 +53,7 @@ export const outcomeLabels = [
},
{
color: "D3F82D",
description: "Further research required...?",
description: "Further research required...? 🔎",
name: "status: needs investigation",
},
{
Expand All @@ -68,12 +68,12 @@ export const outcomeLabels = [
},
{
color: "d73a4a",
description: "Something isn't working :(",
description: "Something isn't working :( 🐛",
name: "type: bug",
},
{
color: "a2eeef",
description: "New enhancement or request",
description: "New enhancement or request 🚀",
name: "type: feature",
},
{
Expand All @@ -83,7 +83,7 @@ export const outcomeLabels = [
},
{
color: "fde282",
description: "Tech debt or other code/repository cleanups",
description: "Tech debt or other code/repository cleanups 🧹",
name: "type: cleanup",
},
];