From aff0eb8ecb13903f1823a2092dceb20e38d605e6 Mon Sep 17 00:00:00 2001 From: Snider Date: Wed, 4 Feb 2026 18:34:06 +0000 Subject: [PATCH] fix(auto-merge): add required permissions to workflow caller The thin caller was missing contents:write and pull-requests:write permissions, causing startup_failure on every auto-merge run. Co-Authored-By: Claude Opus 4.5 --- .github/workflows/auto-merge.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/workflows/auto-merge.yml b/.github/workflows/auto-merge.yml index 38594eb..de6cab7 100644 --- a/.github/workflows/auto-merge.yml +++ b/.github/workflows/auto-merge.yml @@ -4,6 +4,10 @@ on: pull_request: types: [opened, reopened, ready_for_review] +permissions: + contents: write + pull-requests: write + jobs: merge: uses: host-uk/.github/.github/workflows/auto-merge.yml@dev