Byparr/renovate.json

20 lines
522 B
JSON
Raw Normal View History

2024-11-28 12:27:27 +00:00
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
2024-11-30 12:47:34 +00:00
"allowedPostUpgradeCommands": ["^./scripts/post-upgrade.sh"],
2024-11-28 12:33:04 +00:00
"extends": ["config:recommended"],
"packageRules": [
{
"automerge": true,
2024-11-30 12:58:02 +00:00
"matchPackageNames": ["^(?!.*\bpython\b).*"],
2024-11-28 12:33:04 +00:00
"matchUpdateTypes": ["minor", "patch"]
}
],
"postUpgradeTasks": {
"commands": [
"./scripts/post-upgrade.sh {{{depName}}} {{{currentVersion}}} {{{newVersion}}}"
],
"executionMode": "update",
"fileFilters": []
}
2024-11-28 12:27:27 +00:00
}