From a38f0514b967221e9a3b8211c7e5bcff9541a547 Mon Sep 17 00:00:00 2001 From: lukasIO Date: Fri, 8 Mar 2024 06:49:02 +0100 Subject: [PATCH] Sort renovate rules from least to most important (#38) --- renovate.json | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/renovate.json b/renovate.json index 7734be8..e127b68 100644 --- a/renovate.json +++ b/renovate.json @@ -2,17 +2,17 @@ "$schema": "https://docs.renovatebot.com/renovate-schema.json", "extends": ["config:recommended"], "packageRules": [ - { - "matchSourceUrlPrefixes": ["https://github.com/livekit/"], - "matchUpdateTypes": ["patch", "minor"], - "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)" + }, + { + "matchSourceUrlPrefixes": ["https://github.com/livekit/"], + "matchUpdateTypes": ["patch", "minor"], + "groupName": "LiveKit dependencies (non-major)", + "automerge": true } ] }