Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
ci: add all-passed job to simplify pull request merge rules in GitHub
  • Loading branch information
pkuczynski committed Jul 8, 2025
commit 28b72eb6567de6b0eea45710c961f5999af73b4c
8 changes: 8 additions & 0 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -61,3 +61,11 @@ jobs:
CC_TEST_REPORTER_ID: ${{ secrets.CC_TEST_REPORTER_ID }}
with:
coverageCommand: bundle exec appraisal rspec

all-passed:
runs-on: ubuntu-latest
if: always()
needs:
- test
steps:
- run: exit ${{ contains(needs.*.result, 'failure') && 1 || 0 }}
Loading