From e4f6674ee4bf7659c668afb5f481c860482fdecc Mon Sep 17 00:00:00 2001 From: Drew Newberry Date: Mon, 16 Mar 2026 10:40:54 -0700 Subject: [PATCH] fix(ci): add actions:write permission to release-auto-tag workflow The 'Trigger Release Tag workflow' step uses gh workflow run to dispatch release-tag.yml, which requires the actions:write permission. Without it the GITHUB_TOKEN gets HTTP 403: Resource not accessible by integration. --- .github/workflows/release-auto-tag.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/release-auto-tag.yml b/.github/workflows/release-auto-tag.yml index c5cd9797..aa6f73c3 100644 --- a/.github/workflows/release-auto-tag.yml +++ b/.github/workflows/release-auto-tag.yml @@ -10,6 +10,7 @@ on: permissions: contents: write + actions: write concurrency: group: release-auto-tag