-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix: The default labels aren't even in version 3.0.0. Sigh.
- Loading branch information
Showing
3 changed files
with
100 additions
and
9 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,4 @@ | ||
# Custom | ||
labels.json | ||
|
||
# Logs | ||
logs | ||
|
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,92 @@ | ||
[ | ||
{ | ||
"name": "(ノಠ益ಠ)ノ彡┻━┻", | ||
"color": "FC271E", | ||
"description": "For that one time. You'll know when that is." | ||
}, | ||
{ | ||
"name": "File: name_of_file.ext :file_folder:", | ||
"color": "4F86C6", | ||
"description": "Everything name_of_file.ext related." | ||
}, | ||
{ | ||
"name": "Duplicate :heavy_multiplication_x:", | ||
"color": "D2DAE1", | ||
"description": "It's a dupe, duh." | ||
}, | ||
{ | ||
"name": "Inactive :zzz:", | ||
"color": "D2DAE1", | ||
"description": "Dodged a bullet. For how long though?" | ||
}, | ||
{ | ||
"name": "Good first issue :ok_hand:", | ||
"color": "4F86C6", | ||
"description": "If you're new here, check this out!" | ||
}, | ||
{ | ||
"name": "Help wanted :raised_hands:", | ||
"color": "A1EF8B", | ||
"description": "I'm desperate. Please help a poor soul." | ||
}, | ||
{ | ||
"name": "Priority: High :fire:", | ||
"color": "FC271E", | ||
"description": "Oh no..." | ||
}, | ||
{ | ||
"name": "Priority: Low :snowflake:", | ||
"color": "008000", | ||
"description": "Don't worry. At least for now. But don't forget about it!" | ||
}, | ||
{ | ||
"name": "Priority: Medium :tornado:", | ||
"color": "FFFF32", | ||
"description": "You should probably go take a look. Maybe this week still?" | ||
}, | ||
{ | ||
"name": "Status: Acknowledged :v:", | ||
"color": "A18276", | ||
"description": "Did you really though? Don't forget about it!" | ||
}, | ||
{ | ||
"name": "Status: Done :heavy_check_mark:", | ||
"color": "008000", | ||
"description": "I hope you actually did something well this time." | ||
}, | ||
{ | ||
"name": "Status: In Progress :clock1030:", | ||
"color": "ff8000", | ||
"description": "Tell them you're working on it. They'll believe you!" | ||
}, | ||
{ | ||
"name": "Status: Review Needed :thinking:", | ||
"color": "FFFF32", | ||
"description": "Don't try to do things alone, go check it out! It's probably good." | ||
}, | ||
{ | ||
"name": "Type: Bug :beetle:", | ||
"color": "FC271E", | ||
"description": "It's a bug. Easy. Fix it." | ||
}, | ||
{ | ||
"name": "Type: Enhancement :arrow_double_up:", | ||
"color": "4F86C6", | ||
"description": "Somebody says your code could be better! They're probably right." | ||
}, | ||
{ | ||
"name": "Type: Feature Request :green_heart:", | ||
"color": "008000", | ||
"description": "Yay, people actually care about this project!" | ||
}, | ||
{ | ||
"name": "Type: Question :question:", | ||
"color": "D2DAE1", | ||
"description": "You've told yourself you'd answer every single one. Go do it." | ||
}, | ||
{ | ||
"name": "Type: TODO :memo:", | ||
"color": "ff8000", | ||
"description": "Let me guess: there are a lot?" | ||
} | ||
] |