Skip to content

Commit a34c510

Browse files
committed
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.
1 parent 2bf9b10 commit a34c510

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

.github/workflows/release-comment.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,8 @@ on:
55
types: [published]
66

77
permissions:
8+
contents: read
9+
issues: write
810
pull-requests: write
911

1012
jobs:

0 commit comments

Comments
 (0)