From 5521e0e7a714422a40b504e9e04482daf870f273 Mon Sep 17 00:00:00 2001 From: bnallapeta Date: Fri, 20 Oct 2023 18:42:18 +0530 Subject: [PATCH] fix notify success and failure steps --- .github/workflows/push.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/push.yml b/.github/workflows/push.yml index f13c2f9f..e510f4e4 100644 --- a/.github/workflows/push.yml +++ b/.github/workflows/push.yml @@ -132,7 +132,7 @@ jobs: notify-success: name: Notify Success runs-on: ubuntu-latest - if: always() && (needs.push-operator.result == 'success' && needs.operator-e2e-test.result == 'success') + if: always() && (needs.push-operator.result == 'success') needs: - push-operator @@ -192,7 +192,7 @@ jobs: notify-failure: name: Notify Failure runs-on: ubuntu-latest - if: always() && (needs.push-operator.result != 'success' || needs.operator-e2e-test.result != 'success') + if: always() && (needs.push-operator.result != 'success') needs: - push-operator