opendia/.github/dependabot.yml
@aaronjmars d58a584e7e
chore: add Dependabot config for npm + GitHub Actions (#33)
Adds .github/dependabot.yml covering the two npm packages (opendia-mcp, opendia-extension) and the GitHub Actions used in CI. Weekly schedule with minor/patch grouping to keep PR noise low; this also surfaces the checkout/setup-node major bumps the CI currently warns about.

Co-authored-by: aaronjmars <aaronjmars@users.noreply.github.com>
Co-authored-by: Claude Opus 4.8 <noreply@anthropic.com>
2026-06-22 08:07:21 -04:00

43 lines
944 B
YAML

version: 2
updates:
# MCP server (Node.js)
- package-ecosystem: npm
directory: /opendia-mcp
schedule:
interval: weekly
open-pull-requests-limit: 5
commit-message:
prefix: chore(mcp-deps)
groups:
mcp-minor-and-patch:
update-types:
- minor
- patch
# Browser extension (Node.js)
- package-ecosystem: npm
directory: /opendia-extension
schedule:
interval: weekly
open-pull-requests-limit: 5
commit-message:
prefix: chore(ext-deps)
groups:
ext-minor-and-patch:
update-types:
- minor
- patch
# GitHub Actions used by the CI workflow
- package-ecosystem: github-actions
directory: /
schedule:
interval: weekly
open-pull-requests-limit: 5
commit-message:
prefix: chore(ci-deps)
groups:
actions-minor-and-patch:
update-types:
- minor
- patch