From 92e50ecb4f466d5c71e10868a87fcadda261e925 Mon Sep 17 00:00:00 2001 From: lukasIO Date: Tue, 18 Jun 2024 16:28:43 +0200 Subject: [PATCH] Group LiveKit dependencies in renovatebot (#898) --- renovate.json | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/renovate.json b/renovate.json index 0cd5c23d1..756e19534 100644 --- a/renovate.json +++ b/renovate.json @@ -1,17 +1,23 @@ { "extends": ["config:base"], - "schedule": "on the first day of the month", "rangeStrategy": "auto", "packageRules": [ { + "schedule": "before 6am on the first day of the month", "matchDepTypes": ["devDependencies"], "matchUpdateTypes": ["patch", "minor"], "groupName": "devDependencies (non-major)" }, { + "schedule": "before 6am on the first day of the month", "matchPackagePrefixes": ["@rushstack"], "matchUpdateTypes": ["patch", "minor"], "groupName": "Rush stack (non-major)" + }, + { + "matchPackagePrefixes": ["@livekit", "livekit-"], + "matchUpdateTypes": ["patch", "minor"], + "groupName": "LiveKit dependencies (non-major)" } ] }