Skip to content

Commit

Permalink
Fix #4
Browse files Browse the repository at this point in the history
Fix: The default labels aren't even in version 3.0.0. Sigh.
  • Loading branch information
Zebiano committed Mar 16, 2020
1 parent 34ca70e commit a6acb99
Show file tree
Hide file tree
Showing 3 changed files with 100 additions and 9 deletions.
1 change: 0 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
# Custom
labels.json

# Logs
logs
Expand Down
16 changes: 8 additions & 8 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -119,14 +119,14 @@ A very specific example, yet the one I think will be the most used. It's assumed
This is the file where all your custom labels are stored. Feel free to edit it. Just keep in mind it has to have the following structure:
```
{
"labels": [
{
"name": "Label name",
"color": "FC271E",
"description": "Label Description."
},
...
]
"labels": [
{
"name": "Label name",
"color": "FC271E",
"description": "Label Description."
},
...
]
}
```

Expand Down
92 changes: 92 additions & 0 deletions lib/labels.json
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?"
}
]

0 comments on commit a6acb99

Please sign in to comment.