chore(deps): bump python from 4e8e9a5
to 25df32b
in /dind
#1896
Workflow file for this run
This file contains 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: Build Checker | |
on: | |
pull_request: | |
branches: | |
- master | |
jobs: | |
check: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Wait for commit statuses | |
id: status | |
uses: WyriHaximus/[email protected] | |
with: | |
ignoreActions: check | |
checkInterval: 60 | |
env: | |
GITHUB_TOKEN: "${{ secrets.GITHUB_TOKEN }}" | |
- name: Succeed | |
if: steps.status.outputs.status == 'success' | |
run: exit 0 | |
- name: Fail | |
if: steps.status.outputs.status == 'failure' | |
run: exit 1 |