fix(ci): check for correct ignored job names (#9665)

These need the `ci / ` prefix.
This commit is contained in:
Jamil
2025-06-24 16:15:00 -07:00
committed by GitHub
parent ff5a632d2a
commit 75740e4377

View File

@@ -121,7 +121,7 @@ jobs:
set -e
while true; do
jobs_json=$(gh run view ${{ github.run_id }} --json jobs --jq '.jobs | map(select(.name != "required-check" and .name != "upload-bencher"))')
jobs_json=$(gh run view ${{ github.run_id }} --json jobs --jq '.jobs | map(select(.name != "ci / required-check" and .name != "ci / upload-bencher"))')
total_jobs=$(echo "$jobs_json" | jq 'length')
failed_jobs=$(echo "$jobs_json" | jq -r '[.[] | select(.conclusion == "failure")] | length')