mirror of
https://github.com/jdx/mise-action.git
synced 2026-05-18 07:21:53 +00:00
- Changed from deprecated 'allowedCommands' to 'allowedPostUpgradeCommands' - Explicitly allow 'npm run all' command for postUpgradeTasks
27 lines
572 B
JSON
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$"
|
|
]
|
|
}
|