From 7e78a68b441f1f5fbd51d516f642c179dc0d3fb1 Mon Sep 17 00:00:00 2001 From: Scott Leberknight <174812+sleberknight@users.noreply.github.com> Date: Mon, 25 Nov 2024 17:17:55 -0500 Subject: [PATCH] Add dependabot groups (#145) Modify dependabot configuration to group updates for minor and patch versions, splitting dev and prod dependencies. --- .github/dependabot.yml | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index ef87590..dc9d42a 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -4,6 +4,17 @@ updates: directory: "/" schedule: interval: "weekly" + groups: + dev-deps: + dependency-type: "development" + update-types: + - "minor" + - "patch" + prod-deps: + dependency-type: "production" + update-types: + - "minor" + - "patch" assignees: - "sleberknight" - "chrisrohr" @@ -15,6 +26,10 @@ updates: directory: "/" schedule: interval: "weekly" + groups: + actions-deps: + patterns: + - "*" assignees: - "sleberknight" - "chrisrohr"