From 2c50058ed21d70cb0e4e9b4633e6186361820c8f Mon Sep 17 00:00:00 2001 From: Earl Warren Date: Mon, 28 Jul 2025 20:06:21 +0200 Subject: [PATCH] chore: import and adapt act renovate configuration - ignore all testdata, not just the runner - remove exclusion of nektos/act since it is not here - add specific github.com/rhysd/actionlint rule --- renovate.json | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/renovate.json b/renovate.json index 3eccacbe..b4d8ffb3 100644 --- a/renovate.json +++ b/renovate.json @@ -4,9 +4,14 @@ "prConcurrentLimit": 1, "packageRules": [ { - "description": "Disable nektos/act, it's replaced", - "matchDepNames": ["github.com/nektos/act"], + "description": "Disable act test data", + "matchFileNames": ["act/*/testdata/**"], "enabled": false + }, + { + "description": "Separate minor and patch for some packages", + "matchDepNames": ["github.com/rhysd/actionlint"], + "separateMinorPatch": true } ], "ignorePaths": []