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
This commit is contained in:
Łukasz Mierzwa
2018-12-21 22:54:21 +00:00
parent 72780065d8
commit ab0038890a

View File

@@ -1,5 +1,4 @@
{
"extends": [
"config:base"
]
"extends": ["config:base"],
"prConcurrentLimit": 1
}