diff --git a/.github/workflows/dev-image-update.yaml b/.github/workflows/dev-image-update.yaml index 9f0e088ee..107368100 100644 --- a/.github/workflows/dev-image-update.yaml +++ b/.github/workflows/dev-image-update.yaml @@ -102,7 +102,7 @@ jobs: needs: [ update_image, helm_tag_bump, cherry_pick_image_to_production_gcr ] uses: ./.github/workflows/notify-slack.yaml secrets: inherit - if: ${{ !cancelled() }} + if: ${{ always() }} with: workflow_name: Dev Image Update notify_on_success: true diff --git a/.github/workflows/helmtagbump.yaml b/.github/workflows/helmtagbump.yaml index 38493b9bb..56d20c4dd 100644 --- a/.github/workflows/helmtagbump.yaml +++ b/.github/workflows/helmtagbump.yaml @@ -113,7 +113,7 @@ jobs: needs: [ integration_helm_tag_update, ui_helm_default_chart_tag ] uses: ./.github/workflows/notify-slack.yaml secrets: inherit - if: ${{ !cancelled() }} + if: ${{ always() }} with: workflow_name: Helm Tag Bump notify_on_failure: ${{ inputs.notify-slack }} diff --git a/.github/workflows/test-e2e.yml b/.github/workflows/test-e2e.yml index 5e5fd5006..d42051008 100644 --- a/.github/workflows/test-e2e.yml +++ b/.github/workflows/test-e2e.yml @@ -118,7 +118,7 @@ jobs: needs: [e2e_test] uses: ./.github/workflows/notify-slack.yaml secrets: inherit - if: ${{ !cancelled() }} + if: ${{ always() }} with: workflow_name: Nightly E2E Tests notify_on_success: true diff --git a/.github/workflows/test-unit.yml b/.github/workflows/test-unit.yml index 58cd3e033..ff140f2f6 100644 --- a/.github/workflows/test-unit.yml +++ b/.github/workflows/test-unit.yml @@ -37,7 +37,7 @@ jobs: needs: [ unit_test ] uses: ./.github/workflows/notify-slack.yaml secrets: inherit - if: ${{ !cancelled() }} + if: ${{ always() }} with: workflow_name: Nightly Unit Tests notify_on_success: true