diff --git a/.github/workflows/all-good.yaml b/.github/workflows/all-good.yaml index 2090c2535..9ebedb7bf 100644 --- a/.github/workflows/all-good.yaml +++ b/.github/workflows/all-good.yaml @@ -1,4 +1,4 @@ -name: All good? +name: Did all the other checks pass? on: push @@ -35,7 +35,7 @@ jobs: continue fi - failed=$(echo "$response" | jq '[.check_runs[] | select(.conclusion != "success" and .name != "all-good")] | length') + failed=$(echo "$response" | jq '[.check_runs[] | select(.conclusion != "success" and .conclusion != "skipped" and .conclusion != "neutral" and .name != "all-good")] | length') if [ "$failed" -eq 0 ]; then echo "All check runs passed!" exit 0