From 26fd797ac99552b936871bdcfaaef755c5c5cf0c Mon Sep 17 00:00:00 2001 From: bo0tzz Date: Sat, 11 Nov 2023 23:31:58 +0100 Subject: [PATCH] chore: re-enable renovate (#4955) * Chore: reenable renovate * chore(renovate): Don't group major updates * chore(renovate): Use matchFileNames --- renovate.json | 16 +++++++++------- 1 file changed, 9 insertions(+), 7 deletions(-) diff --git a/renovate.json b/renovate.json index a379beb138..f5ad25da7b 100644 --- a/renovate.json +++ b/renovate.json @@ -3,17 +3,19 @@ "extends": ["config:base"], "packageRules": [ { - "matchPaths": ["mobile"], - "groupName": "mobile" + "matchFileNames": ["mobile/**"], + "groupName": "mobile", + "matchUpdateTypes": ["minor", "patch"] }, { - "matchPaths": ["server"], - "groupName": "server" + "matchFileNames": ["server/**"], + "groupName": "server", + "matchUpdateTypes": ["minor", "patch"] }, { - "matchPaths": ["web"], - "groupName": "web" + "matchFileNames": ["web/**"], + "groupName": "web", + "matchUpdateTypes": ["minor", "patch"] } ], - "enabled": false }