Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(ci): add allcheckspassed GitHub action #9427

Closed
wants to merge 11 commits into from
23 changes: 23 additions & 0 deletions .github/workflows/all_checks_pass.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
name: All checks pass
on:
pull_request:
types: [ opened, synchronize, reopened, ready_for_review ]
jobs:
allchecks:
runs-on: ubuntu-latest
permissions:
checks: read
contents: read
steps:
- uses: wechuli/allcheckspassed@v1
with:
# Wait 5 minutes, then poll every 3 minutes for up to 60 minutes (65 minutes total)
delay: 5
retries: 20
polling_interval: 3
# These jobs are:
# - set in branch protection rules
# - not required
# - expected to fail until an action is taken (like a review)
checks_exclude: 'require-checklist'

Loading