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:
parent
6a9f44f867
commit
aa02f3db47
1 changed files with 11 additions and 1 deletions
12
.github/workflows/build.yml
vendored
12
.github/workflows/build.yml
vendored
|
@ -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"
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue