From 559f805aecb1d1ff217bc99e0ca4afedb51a1845 Mon Sep 17 00:00:00 2001 From: HonkingGoose <34918129+HonkingGoose@users.noreply.github.com> Date: Fri, 25 Mar 2022 05:47:18 +0100 Subject: [PATCH] docs(self hosted config): repositories array can be object (#14788) --- docs/usage/self-hosted-configuration.md | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/docs/usage/self-hosted-configuration.md b/docs/usage/self-hosted-configuration.md index 4ebafcb7f1..1294dfb24e 100644 --- a/docs/usage/self-hosted-configuration.md +++ b/docs/usage/self-hosted-configuration.md @@ -564,6 +564,17 @@ Example url: `redis://localhost`. ## repositories +Elements in the `repositories` array can be an object if you wish to define additional settings: + +```js +{ + repositories: [ + { repository: 'g/r1', bumpVersion: true }, + 'g/r2' + ], +} +``` + ## repositoryCache Set this to `"enabled"` to have Renovate maintain a JSON file cache per-repository to speed up extractions. -- GitLab