From c265ec3b16d1e1e45c38afcd034f77434f7e9b08 Mon Sep 17 00:00:00 2001 From: Jonathan Haines Date: Sun, 6 Jul 2025 18:37:03 +1000 Subject: [PATCH] fix(ci): release permissions (#1285) --- .github/workflows/release.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 6fb51195..bc542877 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -12,8 +12,9 @@ jobs: name: Release runs-on: ubuntu-latest permissions: - contents: read + contents: write # Used by changests to create releases id-token: write # The OIDC ID token is used for authentication with JSR. + pull-requests: write # Used by changesets to create a pull request for the release steps: - name: Checkout Repo uses: actions/checkout@v4