From aa9645af54c7ef8315da7646e55edfa828555fa9 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" Date: Sat, 1 Sep 2018 23:50:41 +0200 Subject: [PATCH] chore: configure Renovate (#350) --- .travis.yml | 1 + renovate.json | 27 +++++++++++++++++++++++++++ 2 files changed, 28 insertions(+) create mode 100644 renovate.json 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 new file mode 100644 index 0000000..f62eba9 --- /dev/null +++ b/renovate.json @@ -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" + } + } + ] +}