From a34c510997571cfcdceb1f9258ec2d68975b3cfb Mon Sep 17 00:00:00 2001 From: Max Isbey <224885523+maxisbey@users.noreply.github.com> Date: Tue, 9 Dec 2025 15:33:38 +0000 Subject: [PATCH] fix: add missing permissions to release-comment workflow The github-release-commenter action requires `issues: write` permission to comment on issues that are referenced by PRs (e.g., "Fixes #1754"). Without this permission, the action fails with "Resource not accessible by integration". Also adds `contents: read` to ensure the action can read release/commit information. --- .github/workflows/release-comment.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/release-comment.yml b/.github/workflows/release-comment.yml index d2cd89813..6fbd2bc23 100644 --- a/.github/workflows/release-comment.yml +++ b/.github/workflows/release-comment.yml @@ -5,6 +5,8 @@ on: types: [published] permissions: + contents: read + issues: write pull-requests: write jobs: