From be69311692c09ba3f18438ae22a7c204515b0e56 Mon Sep 17 00:00:00 2001 From: "trop[bot]" <37223003+trop[bot]@users.noreply.github.com> Date: Mon, 4 Nov 2024 16:41:12 -0500 Subject: [PATCH] build: add new status to verify if all the required gha jobs have run (#44553) Co-authored-by: trop[bot] <37223003+trop[bot]@users.noreply.github.com> Co-authored-by: John Kleinschmidt --- .github/workflows/build.yml | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 145bb5a34a3a..929b185930c3 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -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"