fix: correct Dependabot author in Mergify rules#583
Conversation
Changed author condition from 'dependabot' to 'dependabot[bot]' to match the actual GitHub bot account name. This fixes auto-merge rules for Dependabot PRs on develop branch.
|
Warning Review limit reached
More reviews will be available in 53 minutes and 51 seconds. Learn how PR review limits work. Your organization has run out of usage credits. Purchase more in the billing tab. ⌛ How to resolve this issue?After more reviews become available, 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 include higher PR review limits than trial, open-source, and free plans. In all cases, reviews become available again over time. During sustained high-volume PR review activity, CodeRabbit may temporarily slow when the next review becomes available. Please see our Fair Usage Limits Policy for further information. ℹ️ Review info⚙️ Run configurationConfiguration used: Repository YAML (base), Organization UI (inherited) Review profile: CHILL Plan: Pro Run ID: 📒 Files selected for processing (2)
✨ 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 |
There was a problem hiding this comment.
Code Review
This pull request updates the Mergify configuration file (.github/mergify.yml) to change the author filter from dependabot to dependabot[bot] for auto-merging dependency and security updates on the develop branch. There are no review comments, and I have no feedback to provide.
🔍 Reviewer Summary for PR #583CI Status: ✅ Recommendations
|
🔍 Reviewer Summary for PR #583CI Status: ✅ Recommendations
|
|
You have reached your Codex usage limits for code reviews. You can see your limits in the Codex usage dashboard. |
Summary
Fix Mergify auto-merge rules for Dependabot PRs by correcting the author condition.
Problem
The Mergify configuration had
author=dependabotbut GitHub's Dependabot bot account is registered asdependabot[bot], causing the auto-merge rules to never match.Solution
Updated both auto-merge rules (dependency updates and security updates) to use the correct author:
author=dependabot[bot]Testing
This will be validated once the Dependabot PRs (#532, #533) are processed by Mergify with the corrected rules.
Generated by Claude Code