Skip to content

Commit

Permalink
only check failed status (fork will be skipped)
Browse files Browse the repository at this point in the history
  • Loading branch information
gartnera committed Nov 6, 2024
1 parent 68c82c7 commit f2cdc84
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/e2e.yml
Original file line number Diff line number Diff line change
Expand Up @@ -306,7 +306,7 @@ jobs:
- run: |
result="${{ needs.build-zetanode.result }}"
if [[ $result != "success" || $result == "skipped" ]]; then
if [[ $result == "failed" ]]; then
exit 1
fi
result="${{ needs.e2e.result }}"
Expand Down

0 comments on commit f2cdc84

Please sign in to comment.