Skip to content

Commit

Permalink
Add workflow that waits for everything
Browse files Browse the repository at this point in the history
  • Loading branch information
rrousselGit committed Dec 22, 2023
1 parent a4eb5ea commit 466771d
Showing 1 changed file with 27 additions and 0 deletions.
27 changes: 27 additions & 0 deletions .github/workflows/wait_all
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
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"

0 comments on commit 466771d

Please sign in to comment.