build: add new status to verify if all the required gha jobs have run (#44555)

build: add new status to verify if all the required gha jobs have run (#44432)

(cherry picked from commit 1c1eb3e19d)
This commit is contained in:
John Kleinschmidt 2024-11-04 16:41:40 -05:00 committed by GitHub
parent 6a9f44f867
commit aa02f3db47
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -249,4 +249,14 @@ jobs:
gn-build-type: testing
generate-symbols: false
upload-to-storage: '0'
secrets: inherit
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"