From 665f85a087b445c6f7f2ade9a60a4edd027a2adc Mon Sep 17 00:00:00 2001 From: CJ Brewer Date: Tue, 20 Jan 2026 07:41:43 -0700 Subject: [PATCH] ci: PR_BYPASS fix changeset actions permissions --- .github/workflows/release.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index a6f6a7c9..cacfd605 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -4,7 +4,8 @@ name: Release JS # See https://docs.npmjs.com/trusted-publishers#supported-cicd-providers permissions: id-token: write # Required for OIDC - contents: read + contents: write # Required for changesets to commit and push + pull-requests: write # Required for changesets to check existing PRs on: push: @@ -29,7 +30,7 @@ jobs: - name: Install Node.js uses: actions/setup-node@v4 with: - node-version: 20 + node-version: 22 cache: 'pnpm' - name: Install dependencies