From c1d49b05b274f01bc6e89b4b42110ee2ccf95c46 Mon Sep 17 00:00:00 2001 From: Flea Flicker Date: Sat, 28 Mar 2026 13:56:12 +0000 Subject: [PATCH] fix: correct --head branch format and use --enable-auto-merge (GRO-178) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit CTO review fixes: - Remove bogus "groombook-engineer[bot]:" prefix from --head — gh pr create does not use owner:branch syntax when pushing from a cloned repo; just the branch name is needed - Replace invalid --auto-merges-branch=main flag with --enable-auto-merge (valid gh flag that activates repo auto-merge) Co-Authored-By: Paperclip --- .github/workflows/ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 59f4bea..4c87868 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -342,8 +342,8 @@ jobs: gh pr create \ --repo groombook/infra \ --base main \ - --head "groombook-engineer[bot]:chore/update-image-tags-${TAG}" \ + --head "chore/update-image-tags-${TAG}" \ --title "chore: update image tags to ${TAG}" \ --body "[GRO-178](/d50d9792/issues/GRO-178) — automated image tag update from main merge" \ - --auto-merges-branch=main \ + --enable-auto-merge \ 2>&1 || echo "PR creation attempted"