From aa02f3db47560aa0fdf2683029adb09bc7ab9a73 Mon Sep 17 00:00:00 2001 From: John Kleinschmidt Date: Mon, 4 Nov 2024 16:41:40 -0500 Subject: [PATCH] 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 1c1eb3e19dad1c60dc8926542ce9bbb3a71735f9) --- .github/workflows/build.yml | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 2f0eeec98106..671ce92ea778 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -249,4 +249,14 @@ jobs: gn-build-type: testing generate-symbols: false upload-to-storage: '0' - secrets: inherit \ No newline at end of file + 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"