From 55a1393aff0226244ce2c72651cc37a62afc46c7 Mon Sep 17 00:00:00 2001 From: "[IKcoding-jp]" <[kensaku.ikeda04@gmail.com]> Date: Mon, 3 Aug 2026 10:03:38 +0900 Subject: [PATCH] =?UTF-8?q?fix:=20=E8=87=AA=E5=8B=95=E3=82=B3=E3=83=BC?= =?UTF-8?q?=E3=83=89=E3=83=AC=E3=83=93=E3=83=A5=E3=83=BC=E3=81=AE=E7=B5=90?= =?UTF-8?q?=E6=9E=9C=E3=82=92=20PR=20=E3=81=AB=E3=82=B3=E3=83=A1=E3=83=B3?= =?UTF-8?q?=E3=83=88=E3=81=99=E3=82=8B=E3=82=88=E3=81=86=20--comment=20?= =?UTF-8?q?=E3=82=92=E4=BB=98=E4=B8=8E?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit code-review プラグインは --comment を渡さない限り、レビュー結果を実行ログへ 出力するだけで GitHub にコメントを投稿しない仕様のため、PR #568・#570 では ジョブが success でも指摘が一切残らなかった。 Co-Authored-By: Claude Opus 5 (1M context) Claude-Session: https://claude.ai/code/session_01WWxo2ZpLgqp8pd54g9qF1f --- .github/workflows/claude-code-review.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/claude-code-review.yml b/.github/workflows/claude-code-review.yml index 740a5aaf..9fd08b88 100644 --- a/.github/workflows/claude-code-review.yml +++ b/.github/workflows/claude-code-review.yml @@ -35,6 +35,7 @@ jobs: claude_code_oauth_token: ${{ secrets.CLAUDE_CODE_OAUTH_TOKEN }} plugin_marketplaces: 'https://github.com/anthropics/claude-code.git' plugins: 'code-review@claude-code-plugins' - prompt: '/code-review:code-review ${{ github.repository }}/pull/${{ github.event.pull_request.number }}' + # --comment を付けないとレビュー結果を実行ログに出すだけで PR に投稿しない + prompt: '/code-review:code-review ${{ github.repository }}/pull/${{ github.event.pull_request.number }} --comment' # See https://github.com/anthropics/claude-code-action/blob/main/docs/usage.md # or https://code.claude.com/docs/en/cli-reference for available options