From dc435dcc6ea81e5daa4300aba0d9575659740ca6 Mon Sep 17 00:00:00 2001 From: Kayvan Sylvan Date: Thu, 7 Aug 2025 19:17:19 -0700 Subject: [PATCH] ci: add write permissions to update_release_notes job ## CHANGES - Add contents write permission to release notes job - Enable GitHub Actions to modify repository contents - Fix potential permission issues during release process --- .github/workflows/release.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 72e3f0b2..5211ffa9 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -142,6 +142,8 @@ jobs: update_release_notes: needs: [build, get_version] runs-on: ubuntu-latest + permissions: + contents: write steps: - name: Checkout code uses: actions/checkout@v4