Skip to content

Commit

Permalink
Fix skip-ci on stable.
Browse files Browse the repository at this point in the history
  • Loading branch information
jimmygchen committed Jun 10, 2024
1 parent 947e2e8 commit 61d4baf
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .github/workflows/test-suite.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ on:
- staging
- trying
- 'pr/*'
- fix-skip-ci
pull_request:
merge_group:

Expand Down Expand Up @@ -41,7 +42,7 @@ jobs:
LABELS: ${{ toJson(github.event.pull_request.labels) }}
run: |
SKIP_CI="false"
if [ -z "${LABELS}" ]; then
if [ -z "${LABELS}" ] || [ "${LABELS}" = "null" ]; then
LABELS="none";
else
LABELS=$(echo ${LABELS} | jq -r '.[].name')
Expand Down

0 comments on commit 61d4baf

Please sign in to comment.