From 934a9ddc4ee0fcf933072ba9f9dfeb9f8c8a92b6 Mon Sep 17 00:00:00 2001 From: Jason Meridth Date: Mon, 10 Jun 2024 00:37:45 -0500 Subject: [PATCH] chore: group dependencies Group dependencies by minor/patch to reduce PRs. Keep major version updates in their own PRs for visibility and testing. --- .github/dependabot.yml | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index 7614cdd021b..b65eb374905 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -10,15 +10,39 @@ updates: separator: "-" open-pull-requests-limit: 99 rebase-strategy: disabled + commit-message: + prefix: "chore(deps)" + groups: + dependencies: + applies-to: version-updates + update-types: + - "minor" + - "patch" - package-ecosystem: "github-actions" directory: "/" schedule: interval: daily open-pull-requests-limit: 99 rebase-strategy: disabled + commit-message: + prefix: "chore(deps)" + groups: + dependencies: + applies-to: version-updates + update-types: + - "minor" + - "patch" - package-ecosystem: bundler directory: "/" schedule: interval: daily versioning-strategy: increase open-pull-requests-limit: 99 + commit-message: + prefix: "chore(deps)" + groups: + dependencies: + applies-to: version-updates + update-types: + - "minor" + - "patch"