We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 502b371 commit f35caaaCopy full SHA for f35caaa
.github/workflows/test-suite.yml
@@ -41,12 +41,12 @@ jobs:
41
LABELS: ${{ toJson(github.event.pull_request.labels) }}
42
run: |
43
SKIP_CI="false"
44
- if [ -z $LABELS ]; then
+ if [ -z "${LABELS}" ]; then
45
LABELS="none";
46
else
47
- LABELS=$(echo $LABELS | jq -r '.[].name')
+ LABELS=$(echo ${LABELS} | jq -r '.[].name')
48
fi
49
- for label in $LABELS; do
+ for label in ${LABELS}; do
50
if [ "$label" = "skip-ci" ]; then
51
SKIP_CI="true"
52
break
0 commit comments