From ab0038890a49ceed54288a619482b3c1ba3b4952 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C5=81ukasz=20Mierzwa?= Date: Fri, 21 Dec 2018 22:54:21 +0000 Subject: [PATCH] chore(travis): limit number of open renovate bot PRs to 1 If there's more than 1 open PR then to merge outstanding ones they need to be reabased, so the CI job needs to be re-run. Limit number of open PRs to 1, so there will be no rebasing needed most of the time and travis will run less duplicated jobs --- renovate.json | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/renovate.json b/renovate.json index f45d8f110..0235617e9 100644 --- a/renovate.json +++ b/renovate.json @@ -1,5 +1,4 @@ { - "extends": [ - "config:base" - ] + "extends": ["config:base"], + "prConcurrentLimit": 1 }