From 8507a5ade2e54bacb945479a6bfa86aa43af46f7 Mon Sep 17 00:00:00 2001 From: Jeroen de Bruijn <62570005+jdbruijn@users.noreply.github.com> Date: Sat, 11 Apr 2020 14:14:40 +0200 Subject: [PATCH] docs: add note about using a single configuration file (#11) Closes #6 --- README.md | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 3cd625a4..a4c896c9 100644 --- a/README.md +++ b/README.md @@ -41,6 +41,13 @@ Configuration file to configure Renovate. The configurations that can be done in The [`branchPrefix`](https://docs.renovatebot.com/configuration-options/#branchprefix) option is important to configure and should be configured to a value other than the default to prevent interference with e.g. the Renovate GitHub App. +If you want to use this with just the single configuration file, make sure to include the following two configuration lines. This disables the requirement of a configuration file for the repository and disables onboarding. + +```js + onboarding: false, + requireConfig: false, +``` + ## `token` @@ -75,4 +82,3 @@ jobs: configurationFile: example/config.js token: ${{ secrets.RENOVATE_TOKEN }} ``` -