From 386d2b2f01881e99ae48ef77a78a127a9e977af2 Mon Sep 17 00:00:00 2001 From: Kumar Ujjawal Date: Sun, 16 Aug 2026 09:57:39 +0530 Subject: [PATCH 1/2] chore: group uv dependency updates --- .github/dependabot.yml | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index 7a49c967da226..5d1382e5a5d28 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -104,3 +104,12 @@ updates: schedule: interval: "weekly" labels: [auto-dependencies] + groups: + # minor and patch bumps are grouped into a single PR + all-uv-deps: + applies-to: version-updates + patterns: + - "*" + update-types: + - "minor" + - "patch" From 8b90b98593a553ab95d7367c44f85faf690c81c9 Mon Sep 17 00:00:00 2001 From: Kumar Ujjawal Date: Sun, 16 Aug 2026 13:58:34 +0530 Subject: [PATCH 2/2] chore: group major uv dependency updates --- .github/dependabot.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index 5d1382e5a5d28..cf222c4b32b7b 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -105,11 +105,12 @@ updates: interval: "weekly" labels: [auto-dependencies] groups: - # minor and patch bumps are grouped into a single PR + # all dependency bumps are grouped into a single PR all-uv-deps: applies-to: version-updates patterns: - "*" update-types: + - "major" - "minor" - "patch"