From b72a39cb6707dd943110d3aefb6971eadd29c512 Mon Sep 17 00:00:00 2001 From: Felix Becker Date: Sat, 1 Sep 2018 23:47:16 +0200 Subject: [PATCH] chore: configure renovate --- .travis.yml | 1 + renovate.json | 26 ++++++++++++++++++++++++-- 2 files changed, 25 insertions(+), 2 deletions(-) diff --git a/.travis.yml b/.travis.yml index 3b44f2b..ae35b6c 100644 --- a/.travis.yml +++ b/.travis.yml @@ -39,3 +39,4 @@ stages: branches: only: - master + - /^renovate\/.+/ diff --git a/renovate.json b/renovate.json index f45d8f1..f62eba9 100644 --- a/renovate.json +++ b/renovate.json @@ -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" + } + } ] }