From e709759709bfe721e5c6e0c277d887f6d501befd Mon Sep 17 00:00:00 2001 From: Jon M Date: Wed, 1 Apr 2026 16:44:43 +0100 Subject: [PATCH] Ability to notify based on overall workflow status --- .github/workflows/build.yml | 1 + .github/workflows/publish.yml | 1 + 2 files changed, 2 insertions(+) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 34a9d02..ac6289e 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -63,4 +63,5 @@ jobs: uses: ./.github/actions/notify with: webhook-url: ${{ secrets.NOTIFICATION_URL }} + needs: ${{ toJson(needs) }} data: '{"matrixBuildResult": "${{ needs.build.result }}"}' diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index 6e0fba5..e373c73 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -56,3 +56,4 @@ jobs: uses: ./.github/actions/notify with: webhook-url: ${{ secrets.NOTIFICATION_URL }} + needs: ${{ toJson(needs) }}