mirror of
https://github.com/outbackdingo/firezone.git
synced 2026-01-27 18:18:55 +00:00
fix(ci): check for correct ignored job names (#9665)
These need the `ci / ` prefix.
This commit is contained in:
2
.github/workflows/ci.yml
vendored
2
.github/workflows/ci.yml
vendored
@@ -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')
|
||||
|
||||
Reference in New Issue
Block a user