use scratch-renovate-config:conservative, customized

Prevent auto-merge for scratch-vm to avoid depdency update cycle
This commit is contained in:
Christopher Willis-Ford 2021-07-26 14:06:28 -07:00
parent 65db4f201f
commit e9ac9a23c2
3 changed files with 17 additions and 6 deletions

1
.gitattributes vendored
View file

@ -14,6 +14,7 @@
*.js text eol=lf
*.js.map text eol=lf
*.json text eol=lf
*.json5 text eol=lf
*.md text eol=lf
*.vert text eol=lf
*.xml text eol=lf

View file

@ -1,6 +0,0 @@
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": [
"local>LLK/renovate-config"
]
}

16
renovate.json5 Normal file
View file

@ -0,0 +1,16 @@
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": [
"github>LLK/scratch-renovate-config:conservative"
],
"packageRules": [
// Don't auto-merge scratch-vm since that will cause a never-ending cycle of dependency updates. Ideally, updating
// scratch-vm in scratch-render shouldn't make a scratch-render release. Once that's true we can remove this rule.
{
"matchPackageNames": ["scratch-vm"],
"automerge": false
}
]
}