1
0
Fork 0
mirror of https://github.com/imjasonh/govulncheck-action synced 2026-07-08 08:45:48 +00:00
govulncheck-action/.github/dependabot.yml
Jason Hall 6cffc1b161
Enable grouped updates for Dependabot
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>
2025-07-30 15:36:21 -04:00

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:
- "*"