mirror of
https://github.com/imjasonh/govulncheck-action
synced 2026-07-08 08:45:48 +00:00
Configure Dependabot to batch updates by package ecosystem: - GitHub Actions updates grouped together - npm dependencies grouped together This reduces PR noise by combining multiple dependency updates into single PRs per ecosystem. 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
27 lines
No EOL
554 B
YAML
27 lines
No EOL
554 B
YAML
version: 2
|
|
updates:
|
|
# Enable version updates for GitHub Actions
|
|
- package-ecosystem: "github-actions"
|
|
directory: "/"
|
|
schedule:
|
|
interval: "weekly"
|
|
commit-message:
|
|
prefix: "chore"
|
|
include: "scope"
|
|
groups:
|
|
github-actions:
|
|
patterns:
|
|
- "*"
|
|
|
|
# Enable version updates for npm
|
|
- package-ecosystem: "npm"
|
|
directory: "/"
|
|
schedule:
|
|
interval: "weekly"
|
|
commit-message:
|
|
prefix: "chore"
|
|
include: "scope"
|
|
groups:
|
|
npm-dependencies:
|
|
patterns:
|
|
- "*" |