From 666a0c38a63e93f8fb11555a96e4907cb29f7dc2 Mon Sep 17 00:00:00 2001 From: Snider Date: Wed, 4 Feb 2026 18:28:18 +0000 Subject: [PATCH 1/2] style(io): fix gofmt formatting in local client Remove extra blank line that causes QA fmt check to fail on all PRs. Co-Authored-By: Claude Opus 4.5 --- pkg/io/local/client.go | 1 - 1 file changed, 1 deletion(-) diff --git a/pkg/io/local/client.go b/pkg/io/local/client.go index 872b9617..452afad3 100644 --- a/pkg/io/local/client.go +++ b/pkg/io/local/client.go @@ -48,7 +48,6 @@ func (m *Medium) path(p string) string { return clean } - // Join cleaned relative path with root return filepath.Join(m.root, clean) } From 786223257ba7451f3e2d550ff4dc6543b9a2bce1 Mon Sep 17 00:00:00 2001 From: Snider Date: Wed, 4 Feb 2026 18:34:06 +0000 Subject: [PATCH 2/2] 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 38594eb4..de6cab79 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