From 302380192f88d2c8e056fd17800d4690722a1961 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?St=C3=A9phane=20Brunner?= Date: Wed, 2 Oct 2024 13:14:45 +0200 Subject: [PATCH] Don't update checkstyle on old branches --- .github/renovate.json5 | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/.github/renovate.json5 b/.github/renovate.json5 index 33afc4acb2..aa818beeb8 100644 --- a/.github/renovate.json5 +++ b/.github/renovate.json5 @@ -107,9 +107,15 @@ }, /** Accept only the patch on the stabilization branches */ { - matchBaseBranches: ['/3\\..*/'], + matchBaseBranches: ['/^3\\..*/'], matchUpdateTypes: ['major', 'minor', 'pin', 'digest', 'lockFileMaintenance', 'rollback', 'bump'], enabled: false, }, + /** Don't update checkstyle on old branches */ + { + matchBaseBranches: ['/^3.2[2-9]$/', '/^3.30$/'], + matchPackageNames: ['checkstyle'], + enabled: false, + }, ], }