From 380e593b42181f1e4cc17604942410d4240d80c7 Mon Sep 17 00:00:00 2001 From: Trevor Buckner Date: Thu, 3 Jul 2025 14:45:29 -0400 Subject: [PATCH] Group minor & patch dependency PRs Instead of individual dependabot PRs that need to be merged, then we trigger a rebase, wait 5 minutes, then merge the next... We can group dependency updates together in a single PR. This change makes all dev dependencies bundle minor and patch versions into one PR, and similarly with production dependencies. Major versions will still have separate PRs as they tend to break things. --- .github/dependabot.yml | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index 208b0275b..f6de36b88 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -5,6 +5,15 @@ updates: schedule: interval: daily open-pull-requests-limit: 99 +  groups: +    dev-dependencies: +      dependency-type: "development" +      patterns: ["*"] +      update-types: ["patch", "minor"] +    prod-dependencies: +      dependency-type: "production" +      patterns: ["*"] +      update-types: ["patch", "minor"] ignore: - dependency-name: eslint versions: