From 211a20878ed7c40d6a10a2ffc50751ce8c6f936e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?St=C3=A9phane=20Brunner?= Date: Wed, 2 Oct 2024 14:21:54 +0200 Subject: [PATCH] Don't update the old workflow files --- .github/renovate.json5 | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/.github/renovate.json5 b/.github/renovate.json5 index 52fc0f3d71..d259a8d58c 100644 --- a/.github/renovate.json5 +++ b/.github/renovate.json5 @@ -228,5 +228,14 @@ matchBaseBranches: ['/^[0-9]+\\.[0-9]+$/'], minimumReleaseAge: '7 days', }, + /** Don't update the old workflow files */ + { + matchFileNames: [ + '.github/workflows/*-2-6.yaml', + '.github/workflows/*-2-7.yaml', + '.github/workflows/*-2-8.yaml', + ], + enabled: false, + }, ], }