runner/renovate.json
Earl Warren 2c50058ed2
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
2025-07-28 20:06:21 +02:00

18 lines
486 B
JSON

{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": ["local>forgejo/renovate-config"],
"prConcurrentLimit": 1,
"packageRules": [
{
"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": []
}