From 308a40c5aba54e1976cf85d34f655827f0582e3c Mon Sep 17 00:00:00 2001 From: Russell Dempsey <1173416+SgtPooki@users.noreply.github.com> Date: Tue, 19 Nov 2024 09:16:46 -0800 Subject: [PATCH] chore: group dependabot updates See some examples that resulted from this config: * https://github.com/ipfs/helia-verified-fetch/pull/141 * https://github.com/ipfs/helia-verified-fetch/pull/142 * https://github.com/ipfs/helia-verified-fetch/pull/143 --- .github/dependabot.yml | 17 ++++++++++++++++- 1 file changed, 16 insertions(+), 1 deletion(-) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index d401a7746..f2bbd176a 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -1,7 +1,8 @@ version: 2 updates: - package-ecosystem: npm - directory: "/" + - "/" + - "/packages/*" schedule: interval: daily time: "10:00" @@ -9,3 +10,17 @@ updates: commit-message: prefix: "deps" prefix-development: "deps(dev)" + groups: + helia-deps: # group all deps that should be updated when Helia deps need updated + patterns: + - "*helia*" + - "*libp2p*" + - "*multiformats*" + store-deps: # group all blockstore and datastore updates (interface & impl) + patterns: + - "*blockstore*" + - "*datastore*" + kubo-deps: # group kubo, kubo-rpc-client, and ipfsd-ctl updates + patterns: + - "*kubo*" + - "ipfsd-ctl"