We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4bf16d2 commit 031e9bbCopy full SHA for 031e9bb
.circleci/config.yml
@@ -39,7 +39,8 @@ jobs:
39
elif [[ $TRIGGER_SOURCE == "scheduled_pipeline" ]]; then
40
export IS_SCHEDULE_DISPATCH="true"
41
# Look for the build label/[wheel build] in commit
42
- elif (git log --format=oneline -n 1 $CIRCLE_SHA1) | grep -q '[wheel build]'; then
+ # grep takes a regex, so need to escape brackets
43
+ elif (git log --format=oneline -n 1 $CIRCLE_SHA1) | grep -q '\[wheel build\]'; then
44
: # Do nothing
45
elif ! (curl https://api.github.com/repos/pandas-dev/pandas/issues/$CIRCLE_PR_NUMBER | jq '.labels' | grep -q 'Build'); then
46
circleci-agent step halt
0 commit comments