chore: add .github/dependabot.yml for automated dependency updates#130
Conversation
Add Dependabot configuration covering npm (weekly, max 5 open PRs) and github-actions (weekly) ecosystems so security patches and version bumps are tracked automatically without manual effort. Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
|
Warning You have reached your daily quota limit. Please wait up to 24 hours and I will start processing your requests again! |
|
You have reached your Codex usage limits for code reviews. You can see your limits in the Codex usage dashboard. |
|
Important Review skippedAuto reviews are disabled on this repository. To trigger a review, include ⚙️ Run configurationConfiguration used: Organization UI Review profile: CHILL Plan: Pro Run ID: You can disable this status message by setting the Use the checkbox below for a quick retry:
✨ 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 |
What changed
Added
.github/dependabot.ymlwith two update configurations:/— weekly schedule, capped at 5 open PRs/— weekly scheduleWhy
This is an active TypeScript monorepo published to npm with multiple packages and real CI pipelines, but had no Dependabot configuration. GitHub's own security scanner found 7 vulnerabilities on the default branch (3 high, 2 moderate, 2 low). Without Dependabot, security patches and version bumps require manual tracking. This config ensures they surface automatically as PRs.
Verification
Ran the
verifyCmdfrom the scan plan:File exists and contains valid structure (verified with Python string checks):
version: 2presentpackage-ecosystem: "npm"with weekly interval andopen-pull-requests-limit: 5package-ecosystem: "github-actions"with weekly intervalThis is an automated maintenance pass. No code changes, no lockfile churn — only a config file that enables automated PR creation for dependency updates.
Summary by cubic
Add
.github/dependabot.ymlto automate weekly dependency update PRs fornpmandgithub-actions, limitingnpmto 5 open PRs. This surfaces security patches and version bumps without manual tracking.Written for commit 089a6e7. Summary will update on new commits.