From e5b32013cb4c1085e60cabe530c09a30372abb36 Mon Sep 17 00:00:00 2001 From: Konstantin Wohlwend Date: Mon, 10 Mar 2025 12:04:51 -0700 Subject: [PATCH] Update all-good to understand neutral checks --- .github/workflows/all-good.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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