Skip to content

Add workflow that waits for everything #1

Add workflow that waits for everything

Add workflow that waits for everything #1

Workflow file for this run

name: wait_all
on:
merge_group:
pull_request:
jobs:
wait_all_job:
name: Wait for workflows
runs-on: ubuntu-latest
if: always()
steps:
- name: Checkout repository
uses: actions/checkout@v3
with:
ref: ${{ github.event.pull_request.head.sha || github.event.merge_group.head_sha }}
- name: Wait for workflows
uses: smartcontractkit/chainlink-github-actions/utils/wait-for-workflows@main
with:
max-timeout: "900"
polling-interval: "30"
exclude-workflow-names: ""
exclude-workflow-ids: ""
github-token: ${{ secrets.GITHUB_TOKEN }}
env:
DEBUG: "true"