From 90242c9ab4e88c50af4235db74589b81ce7839b8 Mon Sep 17 00:00:00 2001 From: Ralf Handl Date: Wed, 13 Aug 2025 14:56:22 +0200 Subject: [PATCH] Wait after creating PR for status checks to be triggered --- .github/workflows/sync-dev-to-vX.Y-dev.yaml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/sync-dev-to-vX.Y-dev.yaml b/.github/workflows/sync-dev-to-vX.Y-dev.yaml index 36958e6499..0ace68b375 100644 --- a/.github/workflows/sync-dev-to-vX.Y-dev.yaml +++ b/.github/workflows/sync-dev-to-vX.Y-dev.yaml @@ -46,7 +46,9 @@ jobs: --label "Housekeeping" \ --title "$BASE: update from $HEAD" \ --body "Merge \`$HEAD\` into \`$BASE\`.") + echo "" echo "PR to sync $DEV_BRANCH: $PR" + sleep 10 # allow status checks to be triggered gh pr checks $PR --watch --required || continue gh pr merge $PR --merge --admin