From 2055325133cace5b5edb512403a9da9e7bd52fc0 Mon Sep 17 00:00:00 2001 From: AztecBot Date: Sat, 23 May 2026 23:40:32 +0000 Subject: [PATCH] fix(ci): skip aztec-cli notify job when acceptance test is skipped --- .github/workflows/aztec-cli-acceptance-test.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/aztec-cli-acceptance-test.yml b/.github/workflows/aztec-cli-acceptance-test.yml index 1a1de972c320..acf4b5d98ff7 100644 --- a/.github/workflows/aztec-cli-acceptance-test.yml +++ b/.github/workflows/aztec-cli-acceptance-test.yml @@ -51,7 +51,7 @@ jobs: notify: needs: release-acceptance - if: always() && github.event_name != 'workflow_dispatch' + if: (success() || failure()) && github.event_name != 'workflow_dispatch' runs-on: ubuntu-latest env: VERSION: ${{ github.event.inputs.version || github.event.workflow_run.head_branch }}