From d67209ef9168470b5348eedd357beee22d2c9b54 Mon Sep 17 00:00:00 2001 From: Eric Wittmann Date: Tue, 21 Nov 2023 11:59:33 -0500 Subject: [PATCH] Fixed one last workflow job I missed --- .github/workflows/verify.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/verify.yaml b/.github/workflows/verify.yaml index beb221fec2..0a15a14726 100644 --- a/.github/workflows/verify.yaml +++ b/.github/workflows/verify.yaml @@ -381,7 +381,7 @@ jobs: docker buildx build --push -f ./Dockerfile -t quay.io/apicurio/apicurio-registry-ui:latest-snapshot -t docker.io/apicurio/apicurio-registry-ui:latest-snapshot --platform linux/amd64,linux/arm64,linux/s390x,linux/ppc64le . - name: Google Chat Notification (Always) - if: always() + if: github.event_name == 'push' && always() uses: Co-qn/google-chat-notification@b9227d9daa4638c9782a5bd16c4abb86268127a1 with: name: ${{ github.job }} @@ -389,7 +389,7 @@ jobs: status: ${{ job.status }} - name: Google Chat Notification (Error) - if: failure() + if: github.event_name == 'push' && failure() uses: Co-qn/google-chat-notification@b9227d9daa4638c9782a5bd16c4abb86268127a1 with: name: ${{ github.job }}