From b3e5214c15249f920bf190ff97f923c67255c6ec Mon Sep 17 00:00:00 2001 From: Geoff Bourne Date: Mon, 13 Jul 2026 11:46:37 -0500 Subject: [PATCH] Switch to permissions for auto-release workflow Added permissions for creating releases and tags. --- .github/workflows/auto-release.yml | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/.github/workflows/auto-release.yml b/.github/workflows/auto-release.yml index b842aebe..2a9a05c5 100644 --- a/.github/workflows/auto-release.yml +++ b/.github/workflows/auto-release.yml @@ -6,10 +6,11 @@ on: jobs: auto-release: runs-on: ubuntu-latest + permissions: + # allow for creating releases/tags + contents: write steps: - uses: zenengeo/github-auto-release-action@main with: stable-duration: 3d - force-duration: 14d - token: '${{ secrets.GH_TOKEN }}' - + force-duration: 14d