From ad69891ece7dc718c80f1f9e4317070ded64f3a2 Mon Sep 17 00:00:00 2001 From: filippofilip95 Date: Tue, 19 May 2026 22:32:39 +0200 Subject: [PATCH] fix(wizrd-review): pass --comment to /code-review plugin so it posts the review Per plugin docs (anthropics/claude-code: code-review-plugin), the slash command defaults to terminal output; the --comment flag is required to actually post on the PR. Without it Claude runs the review but never calls the GitHub tool. --- .github/workflows/wizrd-review.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/wizrd-review.yml b/.github/workflows/wizrd-review.yml index a93fbee..b25faed 100644 --- a/.github/workflows/wizrd-review.yml +++ b/.github/workflows/wizrd-review.yml @@ -40,7 +40,7 @@ jobs: 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 }} + /code-review:code-review --comment ${{ github.repository }}/pull/${{ github.event.pull_request.number }} Review style: ${{ inputs.review_style }}.