Skip to content

Commit

Permalink
fix(ci): improve PR results checks (#172)
Browse files Browse the repository at this point in the history
  • Loading branch information
DerekRoberts authored Sep 11, 2024
1 parent 34798da commit fd4f576
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions .github/workflows/pr-open.yml
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,10 @@ jobs:

results:
name: PR Results
needs: [deploys]
needs: [builds, deploys]
if: always()
runs-on: ubuntu-22.04
steps:
- run: echo "Workflow completed successfully!"
- if: contains(needs.*.result, 'failure')
run: echo "At least one job has failed." && exit 1
- run: echo "Success!"

0 comments on commit fd4f576

Please sign in to comment.