From 81ad46fb1069156015fce1a7d9500cd7148771f2 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Fri, 3 Feb 2023 11:05:55 +0000 Subject: [PATCH] Configure Renovate (#14) * Add renovate.json * custom config * fix config * update * update --------- Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: Lukas --- renovate.json | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 renovate.json diff --git a/renovate.json b/renovate.json new file mode 100644 index 0000000..9684a56 --- /dev/null +++ b/renovate.json @@ -0,0 +1,17 @@ +{ + "extends": ["config:base"], + "packageRules": [ + { + "matchSourceUrlPrefixes": ["https://github.com/livekit/"], + "rangeStrategy": "replace", + "groupName": "LiveKit dependencies (non-major)", + "automerge": true + }, + { + "schedule": "before 6am on the first day of the month", + "matchDepTypes": ["devDependencies"], + "matchUpdateTypes": ["patch", "minor"], + "groupName": "devDependencies (non-major)" + } + ] +}