Skip to content

Instantly share code, notes, and snippets.

@rich-iannone
Last active March 4, 2021 16:32
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save rich-iannone/78ec25c5ca00f7572f7e6a8215598397 to your computer and use it in GitHub Desktop.
Save rich-iannone/78ec25c5ca00f7572f7e6a8215598397 to your computer and use it in GitHub Desktop.
GitHub Issue Labels
library(usethis)
labels <-
c(
"Blocked (╥﹏╥)",
"Difficulty: ③ Advanced",
"Difficulty: ② Intermediate",
"Difficulty: ① Novice",
"Effort: ③ High",
"Effort: ② Medium",
"Effort: ① Low",
"Help Wanted ㋡",
"Priority: ♨︎ Critical",
"Priority: ③ High",
"Priority: ② Medium",
"Priority: ① Low",
"Type: ☹︎ Bug",
"Type: ✎ Docs",
"Type: ★ Enhancement",
"Type: ⁇ Question",
"Type: ٩(͡๏̯͡๏)۶ Refactor",
"Good First Issue ♥️",
"Release"
)
colours <-
c(
"#96fff1",
"#d93f0b",
"#fbca04",
"#0e8a16",
"#d93f0b",
"#fbca04",
"#0e8a16",
"#4add30",
"#c12e49",
"#d93f0b",
"#fbca04",
"#0e8a16",
"#bfe85a",
"#fcf82a",
"#84b6eb",
"#d4c5f9",
"#fce5c2",
"#94f7ce",
"#83efad"
)
names(colours) <- labels
usethis::use_github_labels(
labels = labels,
colours = colours,
delete_default = TRUE
)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment