From 2e050e1d748371c1ac52face5c5a34d0febc4a7d Mon Sep 17 00:00:00 2001 From: Ed Morley <501702+edmorley@users.noreply.github.com> Date: Thu, 31 Aug 2023 09:39:53 +0100 Subject: [PATCH] Group minor/patch version Ruby Dependabot updates into one PR This aims to reduces Dependabot PR noise by enabling Dependabot's new semver version level grouping feature: https://github.blog/changelog/2023-08-17-grouped-version-updates-by-semantic-version-level-for-dependabot/ It's only enabled for Ruby dependencies, since for this repo they are typically the most noisy, plus are development-only dependencies that typically don't need any compatibility changes so bundling them together won't make debugging any harder. GUS-W-13990911. --- .github/dependabot.yml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index 200d1c602..2665e72a5 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -8,6 +8,11 @@ updates: - "dependencies" - "ruby" - "skip changelog" + groups: + ruby-dependencies: + update-types: + - "minor" + - "patch" - package-ecosystem: "github-actions" directory: "/" schedule: