Last active
October 27, 2015 09:10
-
-
Save itomg/9f2812f543663fd05cc5 to your computer and use it in GitHub Desktop.
Delete and create github repo 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
#!/bin/bash | |
echo -n "GitHub User: " | |
read USER | |
echo -n "GitHub Password: " | |
read -s PASS | |
echo "" | |
echo -n "GitHub Repo (e.g. foo/bar): " | |
read REPO | |
REPO_USER=$(echo "$REPO" | cut -f1 -d /) | |
REPO_NAME=$(echo "$REPO" | cut -f2 -d /) | |
# Delete default labels | |
curl --user "$USER:$PASS" --include --request DELETE "https://api.github.com/repos/$REPO_USER/$REPO_NAME/labels/bug" | |
curl --user "$USER:$PASS" --include --request DELETE "https://api.github.com/repos/$REPO_USER/$REPO_NAME/labels/duplicate" | |
curl --user "$USER:$PASS" --include --request DELETE "https://api.github.com/repos/$REPO_USER/$REPO_NAME/labels/enhancement" | |
curl --user "$USER:$PASS" --include --request DELETE "https://api.github.com/repos/$REPO_USER/$REPO_NAME/labels/invalid" | |
curl --user "$USER:$PASS" --include --request DELETE "https://api.github.com/repos/$REPO_USER/$REPO_NAME/labels/question" | |
curl --user "$USER:$PASS" --include --request DELETE "https://api.github.com/repos/$REPO_USER/$REPO_NAME/labels/wontfix" | |
# Create labels | |
curl --user "$USER:$PASS" --include --request POST --data '{"name":"L-difficult","color":"5319e7"}' "https://api.github.com/repos/$REPO_USER/$REPO_NAME/labels" | |
curl --user "$USER:$PASS" --include --request POST --data '{"name":"L-easy","color":"d4c5f9"}' "https://api.github.com/repos/$REPO_USER/$REPO_NAME/labels" | |
curl --user "$USER:$PASS" --include --request POST --data '{"name":"L-middle","color":"f7c6c7"}' "https://api.github.com/repos/$REPO_USER/$REPO_NAME/labels" | |
curl --user "$USER:$PASS" --include --request POST --data '{"name":"P-immediate","color":"eb6420"}' "https://api.github.com/repos/$REPO_USER/$REPO_NAME/labels" | |
curl --user "$USER:$PASS" --include --request POST --data '{"name":"P-low","color":"bfdadc"}' "https://api.github.com/repos/$REPO_USER/$REPO_NAME/labels" | |
curl --user "$USER:$PASS" --include --request POST --data '{"name":"P-normal","color":"fbca04"}' "https://api.github.com/repos/$REPO_USER/$REPO_NAME/labels" | |
curl --user "$USER:$PASS" --include --request POST --data '{"name":"T-bug","color":"fc2929"}' "https://api.github.com/repos/$REPO_USER/$REPO_NAME/labels" | |
curl --user "$USER:$PASS" --include --request POST --data '{"name":"T-duplicate","color":"bfe5bf"}' "https://api.github.com/repos/$REPO_USER/$REPO_NAME/labels" | |
curl --user "$USER:$PASS" --include --request POST --data '{"name":"T-enhancement","color":"207de5"}' "https://api.github.com/repos/$REPO_USER/$REPO_NAME/labels" | |
curl --user "$USER:$PASS" --include --request POST --data '{"name":"T-feature","color":"00FF00"}' "https://api.github.com/repos/$REPO_USER/$REPO_NAME/labels" | |
curl --user "$USER:$PASS" --include --request POST --data '{"name":"T-question","color":"cc317c"}' "https://api.github.com/repos/$REPO_USER/$REPO_NAME/labels" | |
curl --user "$USER:$PASS" --include --request POST --data '{"name":"T-support","color":"006b75"}' "https://api.github.com/repos/$REPO_USER/$REPO_NAME/labels" | |
curl --user "$USER:$PASS" --include --request POST --data '{"name":"T-UX","color":"00FFFF"}' "https://api.github.com/repos/$REPO_USER/$REPO_NAME/labels" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment