chore: let renovate be more liberal about what it merges (#435)

This repo was allowing both patch/minor updates of Paragon, but I've opened that up a bit with this PR.  This is based on similar config we've used in other repositories.

It loses the "stability days" that were here, but I don't think we need that for patch/minor updates.
This commit is contained in:
David Joy
2021-05-18 16:40:15 -04:00
committed by GitHub
parent e2f9edd623
commit f62bd5ad76

View File

@@ -1,17 +1,15 @@
{
"extends": [
"config:base"
"config:base",
":automergeLinters",
":automergeTesters",
":automergeMinor",
":noUnscheduledUpdates",
":semanticCommits"
],
"patch": {
"automerge": true
},
"rebaseStalePrs": true,
"packageRules": [
{
"matchPackagePatterns": ["^@edx/paragon"],
"matchUpdateTypes": ["minor", "patch", "pin", "digest"],
"automerge": true,
"stabilityDays": 3
}
]
"schedule": [
"every weekend"
],
"timezone": "America/New_York"
}