Configured Renovate (#10672)

no issue

- Added default config
- Silently automerge test & lint deps
- Added validator to ignoreDeps
- ^ Because we monkeypatch validator prototype with 'extend' method and updating it should be handled more carefully as a separate task. Ref -  https://github.com/TryGhost/Ghost/blob/be27db4/core/server/data/validation/index.js#L55
This commit is contained in:
renovate[bot] 2019-07-01 14:46:27 +02:00 committed by Naz Gargol
parent 6f507b8608
commit c2bb34ff9c
1 changed files with 22 additions and 0 deletions

22
renovate.json Normal file
View File

@ -0,0 +1,22 @@
{
"extends": [
"@tryghost:base",
"@tryghost:groupTestLint",
"@tryghost:groupCSS",
"@tryghost:groupBuildTools",
"@tryghost:automergeSilentTestLintNonMajor"
],
"travis": { "enabled": true },
"node": {
"supportPolicy": ["lts"]
},
"separateMinorPatch": true,
"patch": {
"automerge": true
},
"ignoreDeps": [
"nodemailer",
"validator"
],
"ignorePaths": ["core/test"]
}