fix(dependabot): correct config schema to enable PR auto-gen#472
Conversation
|
CodeAnt AI is reviewing your PR. Thanks for using CodeAnt! 🎉We're free for open-source projects. if you're enjoying it, help us grow by sharing. Share on X · |
|
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 5 minutes and 50 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: ASSERTIVE 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 |
|
|
CodeAnt AI finished reviewing your PR. |
There was a problem hiding this comment.
Code Review
This pull request updates the Dependabot configuration to increase the limit of open pull requests to 10 for both GitHub Actions and Go modules. Feedback indicates that since the default limit is 5, this change may not address the root cause if the goal was to fix a situation where no pull requests were being generated at all.
| directory: / | ||
| schedule: | ||
| interval: weekly | ||
| open-pull-requests-limit: 10 |
There was a problem hiding this comment.
The default value for open-pull-requests-limit is 5, not 0. If the intention of this change is to fix a 'silent PR generation skip' where no pull requests are being created at all (and there are currently fewer than 5 open Dependabot PRs), this configuration change will likely not resolve the root cause. The lack of PR generation is more commonly due to no available updates or an incorrect directory path.
|
CodeAnt AI is running the review. Thanks for using CodeAnt! 🎉We're free for open-source projects. if you're enjoying it, help us grow by sharing. Share on X · |
Sequence DiagramThis PR configures Dependabot to open up to 10 pull requests for GitHub Actions and Go module updates, ensuring scheduled dependency checks result in visible update PRs. sequenceDiagram
participant Scheduler
participant Dependabot
participant GitHub
participant Maintainer
Scheduler->>Dependabot: Run github-actions and gomod checks on schedule
Dependabot->>GitHub: Scan GitHub Actions versions
Dependabot->>GitHub: Open up to 10 action update PRs
Dependabot->>GitHub: Scan Go module versions
Dependabot->>GitHub: Open up to 10 module update PRs
GitHub-->>Maintainer: Notify about new Dependabot PRs
Generated by CodeAnt AI |
|
CodeAnt AI finished running the review. Thanks for using CodeAnt! 🎉We're free for open-source projects. if you're enjoying it, help us grow by sharing. Share on X · |
|
CodeAnt AI is running the review. Thanks for using CodeAnt! 🎉We're free for open-source projects. if you're enjoying it, help us grow by sharing. Share on X · |
Sequence DiagramThis PR updates the Dependabot configuration so that scheduled checks for GitHub Actions and Go modules can create up to 10 update pull requests per ecosystem instead of silently creating none. sequenceDiagram
participant Scheduler
participant Dependabot
participant Repo
participant GitHosting
Scheduler->>Dependabot: Trigger scheduled dependency checks
Dependabot->>Repo: Read dependabot configuration
Dependabot->>Dependabot: Find updates for actions and Go modules
Dependabot->>GitHosting: Open up to 10 update PRs per ecosystem
GitHosting-->>Repo: New dependency update PRs appear
Generated by CodeAnt AI |
|
CodeAnt AI finished running the review. Thanks for using CodeAnt! 🎉We're free for open-source projects. if you're enjoying it, help us grow by sharing. Share on X · |
|
CodeAnt AI is running the review. Thanks for using CodeAnt! 🎉We're free for open-source projects. if you're enjoying it, help us grow by sharing. Share on X · |
Sequence DiagramThis PR updates the Dependabot configuration so that scheduled checks for GitHub Actions and Go modules can open up to 10 update pull requests per ecosystem instead of silently opening none. sequenceDiagram
participant Scheduler
participant Dependabot
participant Repository
Scheduler->>Dependabot: Trigger scheduled update checks
Dependabot->>Repository: Read Dependabot configuration with pull request limit 10
Dependabot->>Repository: Scan GitHub Actions and Go modules for updates
Dependabot->>Repository: Open up to 10 update pull requests per ecosystem
Repository-->>Dependabot: Confirm update pull requests created
Generated by CodeAnt AI |
|
CodeAnt AI finished running the review. Thanks for using CodeAnt! 🎉We're free for open-source projects. if you're enjoying it, help us grow by sharing. Share on X · |
|
CodeAnt AI is running the review. Thanks for using CodeAnt! 🎉We're free for open-source projects. if you're enjoying it, help us grow by sharing. Share on X · |
Sequence DiagramThis PR updates the Dependabot configuration to set an open pull requests limit of 10 for GitHub Actions and Go modules so scheduled checks once again create update PRs instead of being silently skipped. sequenceDiagram
participant Scheduler
participant Dependabot
participant Repo
participant GitHost
Scheduler->>Dependabot: Trigger weekly actions update
Dependabot->>Repo: Load dependabot config
Dependabot->>Dependabot: Read limit 10 for actions
Dependabot->>GitHost: Create up to 10 actions update PRs
Scheduler->>Dependabot: Trigger daily go modules update
Dependabot->>Repo: Load dependabot config
Dependabot->>Dependabot: Read limit 10 for go modules
Dependabot->>GitHost: Create up to 10 go modules update PRs
Generated by CodeAnt AI |
|
CodeAnt AI finished running the review. Thanks for using CodeAnt! 🎉We're free for open-source projects. if you're enjoying it, help us grow by sharing. Share on X · |



User description
Adds missing
open-pull-requests-limit:fields to github-actions and gomod entries.Addresses: docs/governance/dependabot-config-deep-audit-2026-04-26.md
open-pull-requests-limit: 10for both entriesNote
Low Risk
Low risk config-only change that just adjusts Dependabot behavior and does not affect runtime code paths.
Overview
Adds
open-pull-requests-limit: 10to the.github/dependabot.ymlentries forgithub-actionsandgomod, ensuring Dependabot will open up to 10 update PRs per ecosystem under the existing schedules.Reviewed by Cursor Bugbot for commit 97f46d1. Bugbot is set up for automated code reviews on this repo. Configure here.
CodeAnt-AI Description
Restore Dependabot update pull requests for GitHub Actions and Go modules
What Changed
Impact
✅ Dependabot update PRs are created again✅ Fewer missed dependency updates✅ Steady update coverage for GitHub Actions and Go modules🔄 Retrigger CodeAnt AI Review
Details
💡 Usage Guide
Checking Your Pull Request
Every time you make a pull request, our system automatically looks through it. We check for security issues, mistakes in how you're setting up your infrastructure, and common code problems. We do this to make sure your changes are solid and won't cause any trouble later.
Talking to CodeAnt AI
Got a question or need a hand with something in your pull request? You can easily get in touch with CodeAnt AI right here. Just type the following in a comment on your pull request, and replace "Your question here" with whatever you want to ask:
This lets you have a chat with CodeAnt AI about your pull request, making it easier to understand and improve your code.
Example
Preserve Org Learnings with CodeAnt
You can record team preferences so CodeAnt AI applies them in future reviews. Reply directly to the specific CodeAnt AI suggestion (in the same thread) and replace "Your feedback here" with your input:
This helps CodeAnt AI learn and adapt to your team's coding style and standards.
Example
Retrigger review
Ask CodeAnt AI to review the PR again, by typing:
Check Your Repository Health
To analyze the health of your code repository, visit our dashboard at https://app.codeant.ai. This tool helps you identify potential issues and areas for improvement in your codebase, ensuring your repository maintains high standards of code health.