chore: configure Renovate (#350)

pull/345/merge
renovate[bot] 2018-09-01 23:50:41 +02:00 committed by Felix Becker
parent 83846ffa0b
commit aa9645af54
2 changed files with 28 additions and 0 deletions

View File

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

27
renovate.json Normal file
View File

@ -0,0 +1,27 @@
{
"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"
}
}
]
}