Uh oh!
There was an error while loading. Please reload this page.
claude-code-review.yml: add missing --comment flag - #84
Conversation
Without it, the code-review plugin only prints findings to the GitHub Actions job log and never posts to the PR itself. Confirmed by capturing the plugin's own hidden transcript on a canary PR in pgxntool-test: it correctly found an injected bug but its own final line said no GitHub comment was posted for lack of --comment. Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com>
Important Review skippedAuto reviews are disabled on this repository. Please check the settings in the CodeRabbit UI or the ⚙️ Run configurationConfiguration used: Organization UI Review profile: ASSERTIVE Plan: Pro Plus Run ID: You can disable this status message by setting the Use the checkbox below for a quick retry:
Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out. Comment |
Uh oh!
There was an error while loading. Please reload this page.
Summary
/code-reviewplugin only prints its findings to the terminal/job log by default; it needs--commentto post a PR comment. This workflow's prompt was missing that flag, so every automated review has run (real API cost, correct analysis) but never posted anything visible to the PR.show_full_outputon a canary PR with a deliberately injected bug: the review agent found the bug correctly, but its own final line read "No--commentargument was provided, so no GitHub comments were posted." Adding--commentfixed it there; this is the same one-line fix applied to pgxntool's copy of the workflow.Test plan
make test.