From 5c9f4c6638a15a48d7050979714b2c1d42b75c4c Mon Sep 17 00:00:00 2001 From: Palm Date: Wed, 9 Apr 2025 19:53:47 +0700 Subject: [PATCH] ci(release): specify correct permissions for job --- .github/workflows/release.yml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index c28bfdf..c78fe2f 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -12,8 +12,10 @@ jobs: name: Release runs-on: ubuntu-latest permissions: - contents: read - packages: write + contents: write # to be able to publish a GitHub release + issues: write # to be able to comment on released issues + pull-requests: write # to be able to comment on released pull requests + packages: write # to be able to publish GitHub packages timeout-minutes: 10 steps: - name: Checkout