-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
This PR enforces the use of more meaningful labels for all the RYR projects. It does that by leveraging [labeler](https://github.com/tonglil/labeler) The Makefile was updated to simplify the setup and applying the new labels to all the projects. The file used by old way to do it using `github label manager` were deleted. Fixes: #17
- Loading branch information
Showing
5 changed files
with
90 additions
and
81 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,2 +1,3 @@ | ||
bin/ | ||
node_modules/ | ||
package-lock.json |
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 was deleted.
Oops, something went wrong.
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,63 @@ | ||
--- | ||
labels: | ||
# Kinds. | ||
- name: kind/bug | ||
color: F2A2A6 | ||
- name: kind/design | ||
color: 8000ff | ||
- name: kind/docs | ||
color: 4000ff | ||
- name: kind/duplicate | ||
color: cccccc | ||
- name: kind/enhancement | ||
color: E7D3BE | ||
- name: kind/feature | ||
color: B6BEB7 | ||
- name: kind/question | ||
color: EFF1D5 | ||
|
||
# T-Shirt sizes. | ||
- name: size/XS | ||
color: 00FF00 | ||
- name: size/S | ||
color: CCFF66 | ||
- name: size/M | ||
color: FFFF00 | ||
- name: size/L | ||
color: ff9933 | ||
- name: size/XL | ||
color: b60205 | ||
- name: size/XXL | ||
color: 8B0000 | ||
|
||
# Experience levels. | ||
- name: exp/beginner | ||
color: 6A9798 | ||
- name: exp/intermediate | ||
color: 6A9798 | ||
- name: exp/expert | ||
color: 6A9798 | ||
|
||
# Triage statuses. | ||
- name: status/accepted | ||
color: CBE4CE | ||
- name: status/confirmed | ||
color: CBE4CE | ||
- name: status/help wanted | ||
color: 128A0C | ||
- name: status/invalid | ||
color: F09296 | ||
- name: status/more-info-needed | ||
color: 6A9798 | ||
- name: status/needs-attention | ||
color: 6A9798 | ||
- name: status/pending review | ||
color: d4c5f9 | ||
- name: status/requires changes | ||
color: 33cccc | ||
- name: status/review carefully! | ||
color: b60205 | ||
- name: status/WIP | ||
color: fbca04 | ||
- name: status/wontfix | ||
color: 000000 |
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,14 @@ | ||
#!/bin/bash | ||
set -euo pipefail | ||
|
||
: ${BIN_DIR:=bin} | ||
: ${LABELER_VERSION:=1.0.0} | ||
LABELER_RELEASE=https://github.com/tonglil/labeler/releases/download | ||
LABELER_BIN=labeler | ||
|
||
mkdir -p ${BIN_DIR} | ||
if [ ! -f ${BIN_DIR}/${LABELER_BIN} ]; then | ||
wget ${LABELER_RELEASE}/${LABELER_VERSION}/${LABELER_BIN}-darwin-amd64.zip -O ${BIN_DIR}/${LABELER_BIN}.zip | ||
unzip ${BIN_DIR}/${LABELER_BIN}.zip -d ${BIN_DIR} | ||
chmod +x ${BIN_DIR}/${LABELER_BIN} | ||
fi |