Skip to content

Commit

Permalink
build: add new status to verify if all the required gha jobs have run…
Browse files Browse the repository at this point in the history
… (#44432)
  • Loading branch information
jkleinsc authored Nov 4, 2024
1 parent 726d439 commit 1c1eb3e
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -250,3 +250,13 @@ jobs:
generate-symbols: false
upload-to-storage: '0'
secrets: inherit

gha-done:
name: GitHub Actions Completed
runs-on: ubuntu-latest
needs: [docs-only, macos-x64, macos-arm64, linux-x64, linux-x64-asan, linux-arm, linux-arm64]
if: always() && !contains(needs.*.result, 'failure')
steps:
- name: GitHub Actions Jobs Done
run: |
echo "All GitHub Actions Jobs are done"

0 comments on commit 1c1eb3e

Please sign in to comment.