From 22bf493d7e84c650f176be6edeed8fe62104dba2 Mon Sep 17 00:00:00 2001 From: Mahangu Weerasinghe Date: Sun, 31 May 2026 13:26:19 +0530 Subject: [PATCH] chore: split Dependabot github-actions into minor+patch / major groups, add cooldown Tracking: DEVPROD-1072 --- .github/dependabot.yml | 17 ++++++++++++++--- 1 file changed, 14 insertions(+), 3 deletions(-) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index 25aacfc..69c998e 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -10,8 +10,19 @@ updates: schedule: interval: "weekly" day: "monday" - open-pull-requests-limit: 5 + open-pull-requests-limit: 10 groups: - github-actions: + actions-minor-patch: patterns: - - "*" + - '*' + update-types: + - minor + - patch + actions-major: + patterns: + - '*' + update-types: + - major + cooldown: + default-days: 7 + semver-major-days: 14