From e63ce27cb8ee07593596082c458553dd17e40518 Mon Sep 17 00:00:00 2001 From: Cassio Farias Machado Date: Wed, 26 Aug 2026 11:30:49 -0300 Subject: [PATCH] fix: allow prs with skipped steps --- .github/actions/pr-is-mergeable/action.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/actions/pr-is-mergeable/action.yaml b/.github/actions/pr-is-mergeable/action.yaml index c36616b33..8121d2a85 100644 --- a/.github/actions/pr-is-mergeable/action.yaml +++ b/.github/actions/pr-is-mergeable/action.yaml @@ -64,7 +64,7 @@ runs: PR_CHECKS=$(jq -r '.statusCheckRollup' <<< "$PR_JSON") # check runs are things like our CI pipeline - FAILED_CHECK_RUNS=$(jq -r '.[] | select(.__typename == "CheckRun" and .conclusion != "SUCCESS" and .conclusion != "NEUTRAL")' <<< "$PR_CHECKS") + FAILED_CHECK_RUNS=$(jq -r '.[] | select(.__typename == "CheckRun" and .conclusion != "SUCCESS" and .conclusion != "NEUTRAL" and .conclusion != "SKIPPED")' <<< "$PR_CHECKS") EXCLUDED_WORKFLOWS=$(jq -r 'keys[]' <<< "${{ inputs.excluded-check-runs }}") while IFS= read -r EXCLUDED_WORKFLOW; do