From aae66c497952cb57978e54815d76cbd981be78ed Mon Sep 17 00:00:00 2001 From: Jake Howard Date: Sun, 25 Sep 2022 22:13:23 +0100 Subject: [PATCH] Don't open MRs for patch version updates These can stack up once it's ready for a minor update, else I get flooded with MRs. --- renovate.json | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/renovate.json b/renovate.json index c53c644..f3a3da0 100644 --- a/renovate.json +++ b/renovate.json @@ -3,5 +3,11 @@ "extends": [ "config:base" ], - "prConcurrentLimit": 0 + "prConcurrentLimit": 0, + "packageRules": [ + { + "matchUpdateTypes": ["patch"], + "enabled": false + } + ] }