From d1ad1c48f4541ed28bb2d9d5f74b303fce6786fb 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 | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.github/renovate.json5 b/.github/renovate.json5 index a70c6289d..0e8497d4f 100644 --- a/.github/renovate.json5 +++ b/.github/renovate.json5 @@ -158,5 +158,11 @@ matchBaseBranches: ['/^[0-9]+\\.[0-9]+$/'], minimumReleaseAge: '7 days', }, + /** Don't update checkstyle on old branches */ + { + matchBaseBranches: ['/^3.2[2-9]$/', '/^3.30$/'], + matchPackageNames: ['checkstyle'], + enabled: false, + }, ], }