fix: enable allow_auto_merge in settings.yml for Dependabot workflow#185
fix: enable allow_auto_merge in settings.yml for Dependabot workflow#185
Conversation
Explicitly set allow_auto_merge: true in .github/settings.yml so the repository setting is declaratively managed and won't drift. Also adds delete_branch_on_merge and has_wiki to match the full standard defaults. The live GitHub API setting was already true; this PR makes it authoritative via probot/settings. Closes #163 Co-authored-by: don-petry <don-petry@users.noreply.github.com>
|
Warning Rate limit exceeded
Your organization is not enrolled in usage-based pricing. Contact your admin to enable usage-based pricing to continue reviews beyond the rate limit, or try again in 45 minutes and 38 seconds. ⌛ 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. ℹ️ Review info⚙️ Run configurationConfiguration used: Path: .coderabbit.yaml Review profile: CHILL Plan: Pro Run ID: 📒 Files selected for processing (1)
✨ 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 |
|
@don-petry This PR is ready for review. The change declaratively manages the |
|
There was a problem hiding this comment.
Pull request overview
This PR brings the repository’s GitHub settings into compliance by declaring allow_auto_merge: true (required for the existing Dependabot auto-merge workflow) in the probot/settings-managed .github/settings.yml, preventing future drift from live settings.
Changes:
- Added a
repository:settings block to explicitly setallow_auto_merge: true. - Added
delete_branch_on_merge: trueandhas_wiki: falseto align with the referenced standard defaults.
Automated review — APPROVEDRisk: LOW SummarySingle YAML config change adds three standard repository settings ( FindingsInfo — configuration ( Info — ci CI statusAll required status checks passed.
Reviewed by the don-petry PR-review cascade (triage: haiku 4.5 → deep: sonnet 4.6 + duck: gpt-5.4 → audit: opus 4.6). Reply with |



Summary
allow_auto_merge: trueto.github/settings.ymlso the repository setting is declaratively managed via probot/settingsdelete_branch_on_merge: trueandhas_wiki: falseto match the full standard defaultstrue; this PR makes it authoritative and prevents future driftRoot cause
The compliance audit found
allow_auto_merge: nullbecause the setting had not been explicitly enabled. Thedependabot-automerge.ymlworkflow was already in place but requiresallow_auto_mergeto be enabled at the repo level to function.Changes
.github/settings.yml: Addedrepositoryblock withallow_auto_merge: true,delete_branch_on_merge: true, andhas_wiki: falseCloses #163
Generated with Claude Code