retry on missing required checks in case they are still being created #28
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: Run Action | |
on: | |
pull_request: | |
types: | |
# For PR description inspection only | |
- edited | |
- opened | |
- reopened | |
- synchronize | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
jobs: | |
run-golang: | |
env: | |
REQUIRED_CHECKS_DEBUG: true | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-go@v5 | |
with: | |
go-version: stable | |
- run: go run main.go | |
env: | |
INPUT_REQUIRED_WORKFLOW_PATTERNS: | | |
- tests | |
INPUT_TOKEN: ${{ secrets.GITHUB_TOKEN }} |