From a3f6825f9c5c070b1d60543a003d4ee771e2f60b Mon Sep 17 00:00:00 2001 From: Steve Riesenberg <5248162+sjohnr@users.noreply.github.com> Date: Wed, 15 Jan 2025 11:41:07 -0600 Subject: [PATCH] Fix missing GChat notifications with workaround This fix was suggested by GitHub Support as a workaround for a bug where `failure()` is not working for reusable workflows that will be fixed in a few months. Closes gh-16423 --- .github/workflows/continuous-integration-workflow.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/continuous-integration-workflow.yml b/.github/workflows/continuous-integration-workflow.yml index 495b8d536cb..3c53a7532f8 100644 --- a/.github/workflows/continuous-integration-workflow.yml +++ b/.github/workflows/continuous-integration-workflow.yml @@ -116,7 +116,7 @@ jobs: send-notification: name: Send Notification needs: [ perform-release ] - if: ${{ failure() || cancelled() }} + if: ${{ !success() }} runs-on: ubuntu-latest steps: - name: Send Notification