From 669b9a680532d894a4cb58ba147aa66d79aaa9ed Mon Sep 17 00:00:00 2001 From: HonkingGoose <34918129+HonkingGoose@users.noreply.github.com> Date: Thu, 18 Mar 2021 13:46:10 +0100 Subject: [PATCH] docs: capitalize proper noun Renovate (#9199) --- docs/usage/config-presets.md | 4 ++-- docs/usage/configuration-options.md | 4 ++-- docs/usage/faq.md | 2 +- docs/usage/self-hosted-configuration.md | 2 +- 4 files changed, 6 insertions(+), 6 deletions(-) diff --git a/docs/usage/config-presets.md b/docs/usage/config-presets.md index d841c33cdc8dd9..fe0b5776e77481 100644 --- a/docs/usage/config-presets.md +++ b/docs/usage/config-presets.md @@ -139,7 +139,7 @@ For example: } ``` -Then in each of your repositories you can add your renovate config like: +Then in each of your repositories you can add your Renovate config like: ```json "extends": ["fastcore"] @@ -168,7 +168,7 @@ To host your preset config on GitHub: "extends": ["github>rarkins/renovate-config"] ``` -From then on Renovate will use the renovate config from the preset repo's default branch. +From then on Renovate will use the Renovate config from the preset repo's default branch. You do not need to add it as a devDependency or add any other files to the preset repo. ## GitLab-hosted Presets diff --git a/docs/usage/configuration-options.md b/docs/usage/configuration-options.md index 54edfd1cf1e567..b6cf75d4d6c76b 100644 --- a/docs/usage/configuration-options.md +++ b/docs/usage/configuration-options.md @@ -1161,7 +1161,7 @@ For example, if you have an `examples` directory and you want all updates to tho } ``` -If you wish to limit renovate to apply configuration rules to certain files in the root repository directory, you have to use `matchPaths` with either a partial string match or a minimatch pattern. +If you wish to limit Renovate to apply configuration rules to certain files in the root repository directory, you have to use `matchPaths` with either a partial string match or a minimatch pattern. For example you have multiple `package.json` and want to use `dependencyDashboardApproval` only on the root `package.json`: ```json @@ -1973,7 +1973,7 @@ Setting this option to `null` means that Renovate will ignore all status checks. You need to set this if you don't have any status checks but still want Renovate to automerge PRs. In future, this might be configurable to allow certain status checks to be ignored/required. -See [issue 1853 at the renovate repository](https://github.com/renovatebot/renovate/issues/1853) for more details. +See [issue 1853 at the Renovate repository](https://github.com/renovatebot/renovate/issues/1853) for more details. ## respectLatest diff --git a/docs/usage/faq.md b/docs/usage/faq.md index 530e2d45d57c43..bcf253b27896bf 100644 --- a/docs/usage/faq.md +++ b/docs/usage/faq.md @@ -208,7 +208,7 @@ To learn more read the section below. You can see in the example above that Renovate won't normally open a PR for the `snorgleborf` patch release. -There are 2 ways to tell renovate to open a separate PR for the patch release: +There are 2 ways to tell Renovate to open a separate PR for the patch release: - Set `separateMinorPatch` to `true` - Set `automerge` to the value: `"patch"` diff --git a/docs/usage/self-hosted-configuration.md b/docs/usage/self-hosted-configuration.md index 542c18294fa838..548e279bd9a7e9 100644 --- a/docs/usage/self-hosted-configuration.md +++ b/docs/usage/self-hosted-configuration.md @@ -102,7 +102,7 @@ This configuration will be applied after all other environment variables so that ## dockerImagePrefix -Override the default renovate sidecar Docker containers image prefix from `docker.io/renovate` to a custom value, so renovate will pull images from a custom Docker registry. +Override the default Renovate sidecar Docker containers image prefix from `docker.io/renovate` to a custom value, so Renovate will pull images from a custom Docker registry. If this is set to `ghcr.io/renovatebot` the final image for `node` would become `ghcr.io/renovatebot/node` instead of currently used `docker.io/renovate/node`.