Bump the gh-actions-packages group across 1 directory with 11 updates #1023
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: Check Pull Request CI Status | |
on: # yamllint disable-line rule:truthy | |
pull_request: | |
branches: | |
- master | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
permissions: | |
checks: read | |
statuses: read | |
jobs: | |
all-jobs-are-green: | |
runs-on: ubuntu-latest | |
timeout-minutes: 60 | |
steps: | |
- name: Run Ensure CI Success | |
uses: DataDog/ensure-ci-success@b0d931ac77c810490e61964c321103040eef888e # v2.3.0 | |
with: | |
# How long to wait before we start checking the job status | |
# GitHub's API has a limit, so this helps avoid making too many calls | |
# Note: If the job is retried, we'll check it once right away before waiting | |
initial-delay-seconds: 900 | |
# How long to wait between each check | |
max-retries: 60 | |
# Sleep time between each check (default: 60 seconds) | |
# polling-interval-seconds: "60" | |
# Excluded jobs names, each line is a regular expression that must fullm atch the job name | |
# it's currently empty, but here is an example: | |
# ignored-name-patterns: | | |
# .*-test-flaky | |
# useless-job |