From 0672e4586ad2d7bc2972fa993539606d398374bb Mon Sep 17 00:00:00 2001 From: sveitser Date: Thu, 12 Dec 2024 09:57:09 +0100 Subject: [PATCH] dependabot: group mainly external repos 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"