Fix renovate configuration: - schedule at 7am the monday - avoid wiping manual fixes unless needed - only create during schedule
39 lines
969 B
JSON
39 lines
969 B
JSON
{
|
|
"extends": ["github>numerique-gouv/renovate-configuration"],
|
|
"dependencyDashboard": true,
|
|
"labels": ["dependencies", "noChangeLog", "automated"],
|
|
"schedule": ["before 7am on monday"],
|
|
"prCreation": "not-pending",
|
|
"rebaseWhen": "conflicted",
|
|
"updateNotScheduled": false,
|
|
"packageRules": [
|
|
{
|
|
"enabled": false,
|
|
"groupName": "ignored python dependencies",
|
|
"matchManagers": ["pep621"],
|
|
"matchPackageNames": []
|
|
},
|
|
{
|
|
"groupName": "allowed redis versions",
|
|
"matchManagers": ["pep621"],
|
|
"matchPackageNames": ["redis"],
|
|
"allowedVersions": "<6.0.0"
|
|
},
|
|
{
|
|
"enabled": false,
|
|
"groupName": "ignored js dependencies",
|
|
"matchManagers": ["npm"],
|
|
"matchPackageNames": [
|
|
"@hocuspocus/provider",
|
|
"@hocuspocus/server",
|
|
"docx",
|
|
"eslint",
|
|
"fetch-mock",
|
|
"node",
|
|
"node-fetch",
|
|
"workbox-webpack-plugin"
|
|
]
|
|
}
|
|
]
|
|
}
|