From 8599877498c343d9ff2062a67adbd63bddab7732 Mon Sep 17 00:00:00 2001 From: zajck Date: Mon, 4 Dec 2023 09:41:10 +0100 Subject: [PATCH] dependabot group config --- .github/dependabot.yml | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index 000d73eca..0c73d2c07 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -9,3 +9,11 @@ updates: directory: "/" # Location of package manifests schedule: interval: "daily" + groups: + # Group only dev dependencies updates. Production dependencies should have a separate PR per update. + # Exclude major version updates from the dev dependencies group. Major version updates should have a separate PR per update. + - dev-dependencies: + dependency-type: "development" + update-types: + - "minor" + - "patch"