Skip to content

Commit 11816da

Browse files
committed
GitHub Actions: Claude Reviewの権限設定を修正
- issues: read → write (Issueへのコメント投稿に必要) - pull-requests: read → write (PRへのコメント投稿に必要) - id-token: writeをコメントアウト (AWS等を使わない場合は不要) これによりClaude ReviewがIssueやPRにコメントを投稿できるようになります
1 parent 86b41be commit 11816da

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/claude-review.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -27,9 +27,9 @@ jobs:
2727
permissions:
2828
contents: read # Repository 内の権限
2929
actions: read # Actionsログへの権限
30-
issues: read # Issueコメントの権限
31-
pull-requests: read # PR 内コメントの権限
32-
id-token: write # 実行時に適切な権限を取得
30+
issues: write # Issueコメントの権限
31+
pull-requests: write # PR 内コメントの権限
32+
#id-token: write # AWS 等への外部アクセスが必要な場合のみ
3333

3434
steps:
3535
- name: Checkout

0 commit comments

Comments
 (0)