chore(deps): update alpine docker digest to 51183f2 #56
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: wait-for-status-checks | |
| on: | |
| pull_request: {} | |
| permissions: {} | |
| jobs: | |
| # Branch protection rules can enforce that status checks must pass | |
| # before merging - however it requires to name each check explicitly | |
| # in the configuration. It is no longer possible to require all | |
| # checks. | |
| # This job waits for all checks to complete, so it can be set as | |
| # _the_ required check in the branch protection rules. | |
| wait-for-status-checks: | |
| runs-on: ubuntu-latest | |
| permissions: | |
| checks: read | |
| steps: | |
| - uses: poseidon/wait-for-status-checks@899c768d191b56eef585c18f8558da19e1f3e707 # v0.6.0 | |
| with: | |
| token: ${{ secrets.GITHUB_TOKEN }} |