website/renovate.json
Jake Howard e271f81d4e
Only check patch dependencies on weekends
This avoids having tonnes of changing MRs
2022-11-03 13:55:05 +00:00

15 lines
267 B
JSON

{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": [
"config:base"
],
"prConcurrentLimit": 0,
"packageRules": [
{
"matchUpdateTypes": ["patch"],
"schedule": ["every weekend"],
"enabled": false
}
]
}