chore: configure renovate

pull/350/head
Felix Becker 2018-09-01 23:47:16 +02:00
parent 71f5833b65
commit b72a39cb67
2 changed files with 25 additions and 2 deletions

View File

@ -39,3 +39,4 @@ stages:
branches:
only:
- master
- /^renovate\/.+/

View File

@ -1,5 +1,27 @@
{
"extends": [
"config:base"
"extends": ["config:base", ":maintainLockFilesMonthly"],
"prCreation": "not-pending",
"rangeStrategy": "pin",
"semanticCommits": true,
"npm": {
"semanticCommitType": "chore"
},
"composer": {
"enabled": true
},
"packageRules": [
{
"packagePatterns": ["^@types/"],
"automerge": true
},
{
"packageNames": ["felixfbecker/language-server"],
"minor": {
"semanticCommitType": "feat"
},
"patch": {
"semanticCommitType": "fix"
}
}
]
}