-
Notifications
You must be signed in to change notification settings - Fork 42
Add .coderabbit.yaml #725
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add .coderabbit.yaml #725
Conversation
WalkthroughIntroduces a new Changes
Sequence Diagram(s)sequenceDiagram
participant Dev as Developer
participant VCS as Repo/PR
participant CR as CodeRabbit Auto-Review
Dev->>VCS: Open/Update PR
VCS->>CR: Trigger auto-review (per .coderabbit.yaml)
CR->>VCS: Post automated review comments
Dev->>VCS: Address feedback and push updates
VCS->>CR: Re-trigger review on changes
Estimated code review effort🎯 1 (Trivial) | ⏱️ ~2 minutes Poem
Tip 🔌 Remote MCP (Model Context Protocol) integration is now available!Pro plan users can now connect to remote MCP servers from the Integrations page. Connect with popular remote MCPs such as Notion and Linear to add more context to your reviews and chats. ✨ Finishing Touches🧪 Generate unit tests
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. 🪧 TipsChatThere are 3 ways to chat with CodeRabbit:
SupportNeed help? Create a ticket on our support page for assistance with any issues or questions. CodeRabbit Commands (Invoked using PR/Issue comments)Type Other keywords and placeholders
Status, Documentation and Community
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Actionable comments posted: 0
🧹 Nitpick comments (1)
.coderabbit.yaml (1)
5-5
: Add a trailing newline to satisfy YAML linter.YAMLlint reports “no new line character at the end of file.” Add a newline at EOF to appease linters and avoid noisy CI.
- - ".*" + - ".*" +
📜 Review details
Configuration used: .coderabbit.yaml
Review profile: CHILL
Plan: Pro
💡 Knowledge Base configuration:
- MCP integration is disabled by default for public repositories
- Jira integration is disabled by default for public repositories
- Linear integration is disabled by default for public repositories
You can enable these sources in your CodeRabbit configuration.
📒 Files selected for processing (1)
.coderabbit.yaml
(1 hunks)
🧰 Additional context used
🪛 YAMLlint (1.37.1)
.coderabbit.yaml
[error] 5-5: no new line character at the end of file
(new-line-at-end-of-file)
🔇 Additional comments (2)
.coderabbit.yaml (2)
1-5
: Valid config: Auto-review correctly enabled for all base branches.The YAML structure matches the schema (reviews > auto_review > enabled/base_branches). This will activate reviews across all branches as intended.
4-5
: Confirm intent: '.*' also matches the default branch.Per schema, base_branches is for branches “other than the default branch,” which is reviewed by default. Using ".*" includes the default branch too (no harm, but redundant). If the goal is “all non-default branches,” consider a negative lookahead excluding your default (e.g., main or master).
Examples (pick one that matches your default):
- Only non-main: '^(?!main$).+'
- Only non-master: '^(?!master$).+'
If your intent is simply “everything,” your current config is fine.
Summary by CodeRabbit