From bd66dc770e1c35c9af97ca5194f9a1cf3c283d55 Mon Sep 17 00:00:00 2001 From: "Marcus R. Brown" Date: Wed, 20 Dec 2023 20:21:42 -0700 Subject: [PATCH] chore: limit the files found in the preset regex (#898) --- .github/renovate.json5 | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/.github/renovate.json5 b/.github/renovate.json5 index b150b885..168b3540 100644 --- a/.github/renovate.json5 +++ b/.github/renovate.json5 @@ -78,7 +78,14 @@ { customType: 'regex', datasourceTemplate: 'github-releases', - fileMatch: ['\\.json[5]?$', '!renovate\\.json5$'], + fileMatch: [ + '^automerge\\.json$', + '^default\\.json$', + '^group\\.json$', + '^maintenance\\.json$', + '^replacements\\.json$', + '^vendors\\.json$', + ], matchStrings: [ '["\']github>(?bfra-me\\/renovate-config)(?:(?::|\\/\\/)(?.+?))?#(?.+?)["\']', ],