From 6cffc1b161fc9f1c18a11ba4dead72a0975d649f Mon Sep 17 00:00:00 2001 From: Jason Hall Date: Wed, 30 Jul 2025 15:36:21 -0400 Subject: [PATCH] Enable grouped updates for Dependabot MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 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 --- .github/dependabot.yml | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index e758014..6b6e29d 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -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" \ No newline at end of file + include: "scope" + groups: + npm-dependencies: + patterns: + - "*" \ No newline at end of file