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:
parent
949c644a48
commit
6cffc1b161
1 changed files with 9 additions and 1 deletions
10
.github/dependabot.yml
vendored
10
.github/dependabot.yml
vendored
|
|
@ -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:
|
||||
- "*"
|
||||
Loading…
Add table
Add a link
Reference in a new issue