You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Define check name patterns using regular expressions
Configuration
on:
pull_request:
name: Required Checksjobs:
required-checks:
runs-on: ubuntu-lateststeps:
- name: Wait for required checksuses: roryq/required-checks@masterwith:
# required-workflow-patterns is a yaml list of regex patterns to checkrequired_workflow_patterns: | # will match any check with tests in its name - tests # will match either markdown-lint or yaml-lint - (markdown-lint|yaml-lint)# GitHub tokentoken: ${{ secrets.GITHUB_TOKEN }}# number of seconds to wait before starting the first pollinitial_delay_seconds: 15# number of seconds to wait between pollspoll_frequency_seconds: 30# number of times to retry if a required check is missing. # This is useful in cases where the workflow is still being created.missing_required_retry_count: 3# target sha that the checks have been run against. Defaults to ${{ github.event.pull_request.head.sha || github.sha }}target_sha: ${{ github.event.pull_request.head.sha || github.sha }}