From 3682ffb3c4039e875b5b5e6d944d7e0ddf4cae07 Mon Sep 17 00:00:00 2001 From: Matthew Sevey <15232757+MSevey@users.noreply.github.com> Date: Wed, 9 Oct 2024 10:04:18 -0400 Subject: [PATCH] chore(ci): reduce dependabot spam by splitting out updates --- .github/dependabot.yml | 37 ++++++++++++++++++++++++++++++++++--- 1 file changed, 34 insertions(+), 3 deletions(-) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index 31d5bf9..9439ed9 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -1,23 +1,27 @@ version: 2 updates: + # Rollkit specific updates + # Trigger daily, group minor and patch updates - package-ecosystem: github-actions directory: "/" schedule: interval: daily - open-pull-requests-limit: 10 + allow: + - dependency-name: "rollkit/*" labels: - T:dependencies - # Group all patch updates into a single PR groups: patch-updates: applies-to: version-updates update-types: + - "patch" - "minor" - package-ecosystem: gomod directory: "/" schedule: interval: daily - open-pull-requests-limit: 10 + allow: + - dependency-name: "github.com/rollkit/*" labels: - T:dependencies # Group all patch updates into a single PR @@ -25,4 +29,31 @@ updates: patch-updates: applies-to: version-updates update-types: + - "patch" - "minor" + # All other dependencies + # Trigger weekly, group patch updates + - package-ecosystem: github-actions + directory: "/" + schedule: + interval: weekly + open-pull-requests-limit: 10 + labels: + - T:dependencies + groups: + patch-updates: + applies-to: version-updates + update-types: + - "patch" + - package-ecosystem: gomod + directory: "/" + schedule: + interval: weekly + open-pull-requests-limit: 10 + labels: + - T:dependencies + groups: + patch-updates: + applies-to: version-updates + update-types: + - "patch"