Skip to content

Commit 8951cfe

Browse files
committed
Fix workflow permissions: grant write access to issues and PRs
- Change issues permission from read to write - Change pull-requests permission from read to write - Fixes 'Resource not accessible by integration' error - Allows @claude to post comments on issues and PRs
1 parent ddae31f commit 8951cfe

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/claude.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,8 +26,8 @@ jobs:
2626
runs-on: ubuntu-latest
2727
permissions:
2828
contents: read
29-
pull-requests: read
30-
issues: read
29+
pull-requests: write # Changed from read to write
30+
issues: write # Changed from read to write
3131
id-token: write
3232
actions: read # Required for Claude to read CI results on PRs
3333
steps:

0 commit comments

Comments
 (0)