mise-action/.github/renovate.json
jdx 43139419dc
fix: correct Renovate allowedPostUpgradeCommands configuration
- Changed from deprecated 'allowedCommands' to 'allowedPostUpgradeCommands'
- Explicitly allow 'npm run all' command for postUpgradeTasks
2025-09-09 08:20:49 -05:00

27 lines
572 B
JSON

{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": [
"github>jdx/renovate-config"
],
"packageRules": [
{
"matchManagers": ["github-actions"],
"postUpgradeTasks": {
"commands": [],
"fileFilters": [],
"executionMode": "branch"
}
},
{
"matchManagers": ["npm"],
"postUpgradeTasks": {
"commands": ["npm run all"],
"fileFilters": ["dist/**/*"],
"executionMode": "branch"
}
}
],
"allowedPostUpgradeCommands": [
"^npm run all$"
]
}