From 61985e296e55d70eb1455517c0cd030a423777e9 Mon Sep 17 00:00:00 2001 From: Josh Goldberg Date: Thu, 9 Nov 2023 12:41:01 +0000 Subject: [PATCH] feat: add emoji to label descriptions --- .../labels/outcomeLabels.ts | 20 +++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/src/steps/initializeGitHubRepository/labels/outcomeLabels.ts b/src/steps/initializeGitHubRepository/labels/outcomeLabels.ts index bea5d902d..21bb85107 100644 --- a/src/steps/initializeGitHubRepository/labels/outcomeLabels.ts +++ b/src/steps/initializeGitHubRepository/labels/outcomeLabels.ts @@ -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", }, { @@ -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", }, { @@ -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", }, { @@ -53,7 +53,7 @@ export const outcomeLabels = [ }, { color: "D3F82D", - description: "Further research required...?", + description: "Further research required...? ๐Ÿ”Ž", name: "status: needs investigation", }, { @@ -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", }, { @@ -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", }, ];