chore(coderabbit): enable auto-review on PRs targeting dev#67
Merged
Conversation
PriceHawk's integration branch is ``dev``, not ``main`` or ``develop``. The current ``auto_review.base_branches`` list omitted ``dev``, so CR auto-skipped every PR opened against it (e.g. #64), requiring a manual ``@coderabbitai review`` trigger. Adding ``dev`` here means future feature PRs against ``dev`` get CR review immediately without manual intervention. Other base branches kept untouched. Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
Reviewer's guide (collapsed on small PRs)Reviewer's GuideUpdates the CodeRabbit configuration to automatically trigger reviews on pull requests targeting the File-Level Changes
Tips and commandsInteracting with Sourcery
Customizing Your ExperienceAccess your dashboard to:
Getting Help
|
|
No actionable comments were generated in the recent review. 🎉 ℹ️ Recent review info⚙️ Run configurationConfiguration used: Path: .coderabbit.yaml Review profile: ASSERTIVE Plan: Pro Run ID: 📒 Files selected for processing (1)
📜 Recent review details🔇 Additional comments (1)
WalkthroughThe PR updates the CodeRabbit review configuration to enable auto-reviews on the ChangesConfiguration Update
🎯 1 (Trivial) | ⏱️ ~2 minutes 🚥 Pre-merge checks | ✅ 5✅ Passed checks (5 passed)
✏️ Tip: You can configure your own custom pre-merge checks in the settings. ✨ Finishing Touches🧪 Generate unit tests (beta)
Comment |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Add
devto.coderabbit.yamlauto_review.base_branchesso feature PRs againstdevget CR review without manual@coderabbitai reviewtrigger.What was broken
PR #64 (Phase 3.1 ranking foundation) opened against
devand CR auto-skipped:The current
base_brancheslist is[main, develop]. PriceHawk usesdevas the integration branch (per the v1.4 → v1.5 stack pattern), so every feature PR has hit this same wall.What this fixes
Future feature PRs targeting
devget CR review immediately. No more manual trigger overhead. Themainanddevelopentries stay so behavior is purely additive.Test plan
python -c "import yaml; yaml.safe_load(open('.coderabbit.yaml'))"passesauto_review.base_branches— no schema changedevso it's the canary)Changes
Single line addition:
base_branches: - "main" - "develop" + - "dev"Why
PriceHawk's branch model is
feat/* → dev → main. Withoutdevin the auto-review allowlist, every feature PR sits unreviewed until someone manually triggers CR.Breaking Changes
None. Additive yaml change. CR re-reads
.coderabbit.yamlon next PR event.Files Changed
.coderabbit.yaml(+1 line)🤖 Generated with Claude Code
Summary by Sourcery
Build:
Changes
"dev"in theauto_review.base_brancheslist, alongside the existing"main"and"develop"entriesdev. Previously, PRs opened againstdevwere auto-skipped by CodeRabbit becausedevwas not in the base_branches configuration, requiring manual trigger (@coderabbitai review). This change enables automatic code review for future feature PRs targeting thedevbranch without manual intervention.Files Changed
.coderabbit.yamlBreaking Changes
None. This is an additive configuration change that does not alter existing behavior for the
"main"and"develop"branches.