Skip to content

Commit f35caaa

Browse files
committed
f
1 parent 502b371 commit f35caaa

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/test-suite.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -41,12 +41,12 @@ jobs:
4141
LABELS: ${{ toJson(github.event.pull_request.labels) }}
4242
run: |
4343
SKIP_CI="false"
44-
if [ -z $LABELS ]; then
44+
if [ -z "${LABELS}" ]; then
4545
LABELS="none";
4646
else
47-
LABELS=$(echo $LABELS | jq -r '.[].name')
47+
LABELS=$(echo ${LABELS} | jq -r '.[].name')
4848
fi
49-
for label in $LABELS; do
49+
for label in ${LABELS}; do
5050
if [ "$label" = "skip-ci" ]; then
5151
SKIP_CI="true"
5252
break

0 commit comments

Comments
 (0)