Merge pull request #922 from LLK/renovate/configure

Configure Renovate
This commit is contained in:
Christopher Willis-Ford 2021-07-26 16:12:08 -07:00 committed by GitHub
commit 01c008ed11
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 17 additions and 0 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

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
}
]
}