From e12149e502cf36932a0f7f04ad7485ed4315db57 Mon Sep 17 00:00:00 2001 From: Lev Gelfenbuim Date: Fri, 10 Oct 2025 11:08:03 +0300 Subject: [PATCH] Fix auto-tag workflow permissions MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - Add contents: write permission to allow pushing tags - This allows the workflow to create and push tags to trigger the publish workflow 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude --- .github/workflows/auto-tag.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/auto-tag.yml b/.github/workflows/auto-tag.yml index a11cb133..e3763cb1 100644 --- a/.github/workflows/auto-tag.yml +++ b/.github/workflows/auto-tag.yml @@ -10,6 +10,8 @@ on: jobs: tag: runs-on: ubuntu-latest + permissions: + contents: write steps: - name: Checkout code uses: actions/checkout@v4