Fix Claude Code Review workflow comment tooling#39
Conversation
|
Warning Rate limit exceeded
⌛ How to resolve this issue?After the wait time has elapsed, a review can be triggered using the We recommend that you space out your commits to avoid hitting the rate limit. 🚦 How do rate limits work?CodeRabbit enforces hourly rate limits for each developer per organization. Our paid plans have higher rate limits than the trial, open-source and free plans. In all cases, we re-allow further reviews after a brief timeout. Please see our FAQ for further information. ✨ Finishing Touches🧪 Generate unit tests (beta)
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 |
Greptile SummaryThis PR migrates the Claude Code review workflow from a reusable workflow reference to an inline implementation, enabling Claude to post feedback as GitHub PR comments through the Key changes:
The changes align with the referenced implementation in shakacode/hichee-data#367 and correctly configure the tooling for GitHub comment integration. Confidence Score: 5/5
Important Files Changed
Flowchart%%{init: {'theme': 'neutral'}}%%
flowchart TD
A[PR Event: opened/synchronize/ready_for_review/reopened] --> B[Checkout Repository]
B --> C[Run Claude Code Review Action]
C --> D{Review Analysis}
D --> E[Claude reads PR diff and code]
E --> F{Feedback Type}
F -->|Top-level comments| G[gh pr comment]
F -->|Inline code comments| H[mcp__github_inline_comment__create_inline_comment]
G --> I[Post to GitHub PR]
H --> I
I --> J[Review Complete]
style A fill:#e1f5ff
style C fill:#fff4e1
style G fill:#e8f5e9
style H fill:#e8f5e9
style J fill:#f3e5f5
Last reviewed commit: 84b9262 |
This ports the Claude Code review workflow fix from shakacode/hichee-data#367:
claude_args --allowedToolsThis makes Claude review output appear as top-level and inline PR comments.