1
0
Fork 0
mirror of https://github.com/imjasonh/govulncheck-action synced 2026-07-08 08:45:48 +00:00

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>
This commit is contained in:
Jason Hall 2025-07-30 15:36:21 -04:00
parent 949c644a48
commit 6cffc1b161
Failed to extract signature

View file

@ -8,6 +8,10 @@ updates:
commit-message:
prefix: "chore"
include: "scope"
groups:
github-actions:
patterns:
- "*"
# Enable version updates for npm
- package-ecosystem: "npm"
@ -16,4 +20,8 @@ updates:
interval: "weekly"
commit-message:
prefix: "chore"
include: "scope"
include: "scope"
groups:
npm-dependencies:
patterns:
- "*"