Last active
March 4, 2021 16:32
-
-
Save rich-iannone/78ec25c5ca00f7572f7e6a8215598397 to your computer and use it in GitHub Desktop.
GitHub Issue Labels
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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