From d55be73992dd6a8b9064f11a85d0b5521be0dd40 Mon Sep 17 00:00:00 2001 From: Elliot DeNolf Date: Mon, 30 Sep 2024 16:06:43 -0400 Subject: [PATCH] chore(dependabot): exclude drizzle packages --- .github/dependabot.yml | 13 ++++++++++--- 1 file changed, 10 insertions(+), 3 deletions(-) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index 577c6048105..084d2a72059 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -31,21 +31,26 @@ updates: labels: - dependencies groups: - production: + production-deps: dependency-type: production update-types: - minor - patch patterns: - '*' - dev: + exclude-patterns: + - 'drizzle*' + dev-deps: dependency-type: development update-types: - minor - patch patterns: - '*' + exclude-patterns: + - 'drizzle*' + # Only bump patch versions for 2.x - package-ecosystem: npm directory: / target-branch: main @@ -59,9 +64,11 @@ updates: labels: - dependencies groups: - production: + production-deps: dependency-type: production update-types: - patch patterns: - '*' + exclude-patterns: + - 'drizzle*'