From d9a9369e733c6f52d46fb81a736cedb0d072e00a Mon Sep 17 00:00:00 2001 From: Clay Miller Date: Tue, 28 Oct 2025 17:30:20 -0400 Subject: [PATCH] chore: Group Dependabot updates --- .github/dependabot.yml | 71 ++++++++++++++++++++++-------------------- 1 file changed, 37 insertions(+), 34 deletions(-) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index 593de828..883e31d1 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -4,46 +4,49 @@ version: 2 updates: - package-ecosystem: "npm" - directory: "/" - schedule: - interval: "weekly" - - package-ecosystem: "npm" - directory: "/.github/actions/auth" - schedule: - interval: "weekly" - - package-ecosystem: "npm" - directory: "/.github/actions/find" - schedule: - interval: "weekly" - - package-ecosystem: "npm" - directory: "/.github/actions/file" - schedule: - interval: "weekly" - - package-ecosystem: "npm" - directory: "/.github/actions/fix" - schedule: - interval: "weekly" - - package-ecosystem: "github-actions" - directory: "/" - schedule: - interval: "weekly" - - package-ecosystem: "github-actions" - directory: "/.github/actions/gh-cache/cache" - schedule: - interval: "weekly" - - package-ecosystem: "github-actions" - directory: "/.github/actions/gh-cache/delete" - schedule: - interval: "weekly" - - package-ecosystem: "github-actions" - directory: "/.github/actions/gh-cache/restore" + directories: + - "/" + - "/.github/actions/auth" + - "/.github/actions/find" + - "/.github/actions/file" + - "/.github/actions/fix" + groups: + # Open PRs for each major version and security update + # Open an aggregate PR for all minor and patch version updates + npm-minor-and-patch: + applies-to: version-updates + patterns: + - "*" + update-types: + - "minor" + - "patch" schedule: interval: "weekly" - package-ecosystem: "github-actions" - directory: "/.github/actions/gh-cache/save" + directories: + - "/" + - "/.github/actions/gh-cache/cache" + - "/.github/actions/gh-cache/delete" + - "/.github/actions/gh-cache/restore" + - "/.github/actions/gh-cache/save" + groups: + # Open an aggregate PR for all GitHub Actions updates + github-actions: + patterns: + - "*" schedule: interval: "weekly" - package-ecosystem: "bundler" directory: "/sites/site-with-errors" + groups: + # Open PRs for each major version and security update + # Open an aggregate PR for all minor and patch version updates + bundler-minor-and-patch: + applies-to: version-updates + patterns: + - "*" + update-types: + - "minor" + - "patch" schedule: interval: "weekly"