Skip to content

Commit

Permalink
Merge pull request #5 from stakater/actions
Browse files Browse the repository at this point in the history
fix notify success and failure steps
  • Loading branch information
SheryarButt authored Oct 20, 2023
2 parents 0285c80 + 5521e0e commit 68bd105
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/push.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down Expand Up @@ -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

Expand Down

0 comments on commit 68bd105

Please sign in to comment.