From 214e46c622aaa83a7e849ee4b805570ff5732065 Mon Sep 17 00:00:00 2001 From: Mathis Date: Thu, 12 Dec 2024 10:17:00 +0100 Subject: [PATCH] dependabot: group mainly external repos (#2391) Our own repos are mostly git depedencencies and often require manual intervention. This is an attempt to split out updates of third party depedencencies which are more likely to succeed without intervention. --- .github/dependabot.yml | 26 ++++++++++++++++++++++++-- 1 file changed, 24 insertions(+), 2 deletions(-) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index c5b6638f4..0647e6b46 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -12,10 +12,32 @@ updates: - package-ecosystem: "cargo" directory: "/" - # Group all updates together groups: + # The `all` group should include mainly updates from crates.io which are + # more likely to succeed without intervention. all: patterns: - - "*" + - "*" + exclude-patterns: + - "ark-*" + - "cdn-*" + - "hotshot-*" + - "jf-*" + - "marketplace-*" + ark: + patterns: + - "ark-*" + cdn: + patterns: + - "cdn-*" + hotshot: + patterns: + - "hotshot-*" + jf: + patterns: + - "jf-*" + marketplace: + patterns: + - "marketplace-*" schedule: interval: "daily"