Skip to content
Snippets Groups Projects
Unverified Commit a73c499b authored by Martine Lenders's avatar Martine Lenders Committed by GitHub
Browse files

Merge pull request #10117 from miri64/tools/enh/pr-check-label-rename

tools/pr_check: adapt for label categorization
parents f5c5d6b6 055ec38f
No related branches found
No related tags found
No related merge requests found
...@@ -39,12 +39,12 @@ if [ -n "${SQUASH_COMMITS}" ]; then ...@@ -39,12 +39,12 @@ if [ -n "${SQUASH_COMMITS}" ]; then
fi fi
if [ -n "$TRAVIS_PULL_REQUEST" -o -n "$CI_PULL_NR" ]; then if [ -n "$TRAVIS_PULL_REQUEST" -o -n "$CI_PULL_NR" ]; then
if check_gh_label "NEEDS SQUASHING"; then if check_gh_label "CI: needs squashing"; then
echo -e "${CERROR}Pull request needs squashing according to its labels set on GitHub${CRESET}" echo -e "${CERROR}Pull request needs squashing according to its labels set on GitHub${CRESET}"
EXIT_CODE=1 EXIT_CODE=1
fi fi
if check_gh_label "Waiting For Other PR"; then if check_gh_label "State: waiting for other PR"; then
echo -e "${CERROR}Pull request is waiting for another pull request according to its labels set on GitHub${CRESET}" echo -e "${CERROR}Pull request is waiting for another pull request according to its labels set on GitHub${CRESET}"
EXIT_CODE=1 EXIT_CODE=1
fi fi
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment