From 00a53bdc2e6829552595a5a84e93695eb11facdc Mon Sep 17 00:00:00 2001 From: Paul Holzinger Date: Wed, 27 Aug 2025 13:50:35 +0200 Subject: [PATCH 1/2] renovate: drop assignees comment We should have enough people here looking at the repo so I don't see a reason to explictly assign PRs ro someone. Signed-off-by: Paul Holzinger --- .github/renovate.json5 | 2 -- 1 file changed, 2 deletions(-) diff --git a/.github/renovate.json5 b/.github/renovate.json5 index 09f7a90348..882acc01cd 100644 --- a/.github/renovate.json5 +++ b/.github/renovate.json5 @@ -50,8 +50,6 @@ *** Repository-specific configuration options *** *************************************************/ - // Don't leave dep. update. PRs "hanging", assign them to people. - // "assignees": ["rhatdan", "vrothberg", "Luap99"], "postUpdateOptions": [ "gomodVendor", "gomodTidy" From 11b395b838ea170d772246ed080b414a62caf921 Mon Sep 17 00:00:00 2001 From: Paul Holzinger Date: Wed, 27 Aug 2025 13:53:02 +0200 Subject: [PATCH 2/2] renovate: schema fix See #280, the custom file regex manager now uses the managerFilePatterns key which accept an array. Note the .github/workflows/validate.yml doesn't actually exists right now but is again being renamed in #33 so let's just keep it at that. Signed-off-by: Paul Holzinger --- .github/renovate.json5 | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/renovate.json5 b/.github/renovate.json5 index 882acc01cd..b837ea25c1 100644 --- a/.github/renovate.json5 +++ b/.github/renovate.json5 @@ -58,7 +58,9 @@ "customManagers": [ { "customType": "regex", - "fileMatch": "^.github/workflows/validate.yml$", + "managerFilePatterns": [ + '/^.github/workflows/validate.yml$/', + ], "matchStrings": [ "LINT_VERSION:\\s+(?.+)\\s*" ],