From ef45e9f490503b759c2232ffd322f6fc550382ad Mon Sep 17 00:00:00 2001 From: bo0tzz Date: Mon, 27 Nov 2023 04:21:32 +0100 Subject: [PATCH] chore(renovate): Add per-group schedule (#5319) --- renovate.json | 22 +++++++++++++++------- 1 file changed, 15 insertions(+), 7 deletions(-) diff --git a/renovate.json b/renovate.json index 3bdb1490d2..86baa8ca48 100644 --- a/renovate.json +++ b/renovate.json @@ -1,40 +1,48 @@ { "$schema": "https://docs.renovatebot.com/renovate-schema.json", "extends": ["config:base"], + "minimumReleaseAge": 5, "packageRules": [ { "matchFileNames": ["cli/**"], "groupName": "@immich/cli", - "matchUpdateTypes": ["minor", "patch"] + "matchUpdateTypes": ["minor", "patch"], + "schedule": "on monday" }, { "matchFileNames": ["mobile/**"], "groupName": "mobile", - "matchUpdateTypes": ["minor", "patch"] + "matchUpdateTypes": ["minor", "patch"], + "schedule": "on tuesday" }, { "matchFileNames": ["server/**"], "groupName": "server", "matchUpdateTypes": ["minor", "patch"], - "excludePackagePrefixes": ["exiftool"] + "excludePackagePrefixes": ["exiftool"], + "schedule": "on wednesday" }, { "groupName": "exiftool", - "matchPackagePrefixes": ["exiftool"] + "matchPackagePrefixes": ["exiftool"], + "schedule": "on monday" }, { "matchFileNames": ["web/**"], "groupName": "web", - "matchUpdateTypes": ["minor", "patch"] + "matchUpdateTypes": ["minor", "patch"], + "schedule": "on thursday" }, { "matchFileNames": ["machine-learning/**"], "groupName": "machine-learning", - "matchUpdateTypes": ["minor", "patch"] + "matchUpdateTypes": ["minor", "patch"], + "schedule": "on friday" }, { "matchFileNames": [".github/**"], - "groupName": "github-actions" + "groupName": "github-actions", + "schedule": "on friday" }, { "groupName": "base-image",