From 90079311900508024f898ed5d7d4e92bf71ed83e Mon Sep 17 00:00:00 2001
From: HonkingGoose <34918129+HonkingGoose@users.noreply.github.com>
Date: Fri, 3 Nov 2023 13:53:16 +0100
Subject: [PATCH] chore: capitalize Dependency Dashboard in docs and config
 option description (#25569)

---
 docs/usage/configuration-options.md    | 2 +-
 docs/usage/security-and-permissions.md | 2 +-
 lib/config/presets/internal/default.ts | 2 +-
 3 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/docs/usage/configuration-options.md b/docs/usage/configuration-options.md
index f6a9a443ff..94e9aa0927 100644
--- a/docs/usage/configuration-options.md
+++ b/docs/usage/configuration-options.md
@@ -940,7 +940,7 @@ You may use the `customizeDashboard` object to customize the Dependency Dashboar
 
 Supported fields:
 
-- `repoProblemsHeader`: This field will replace the header of the Repository Problems in dependency dashboard issue.
+- `repoProblemsHeader`: This field will replace the header of the Repository Problems in the Dependency Dashboard issue.
 
 ### defaultRegistryUrlTemplate
 
diff --git a/docs/usage/security-and-permissions.md b/docs/usage/security-and-permissions.md
index 727263a189..2e80c359f1 100644
--- a/docs/usage/security-and-permissions.md
+++ b/docs/usage/security-and-permissions.md
@@ -38,7 +38,7 @@ These permissions are always needed to run the respective app.
 | Checks            |  `read` and `write`   |   not applicable   | Read and write status checks                                  |
 | Code              |  `read` and `write`   |       `read`       | Read for repository content and write for creating branches   |
 | Commit statuses   |  `read` and `write`   | `read` and `write` | Read and write commit statuses for Renovate PRs               |
-| Issues            |  `read` and `write`   | `read` and `write` | Create dependency dashboard or Config Warning issues          |
+| Issues            |  `read` and `write`   | `read` and `write` | Create Dependency Dashboard or Config Warning issues          |
 | Pull Requests     |  `read` and `write`   | `read` and `write` | Create update PRs                                             |
 | Workflows         |  `read` and `write`   |   not applicable   | Explicit permission needed to update workflows                |
 
diff --git a/lib/config/presets/internal/default.ts b/lib/config/presets/internal/default.ts
index 26895015ea..27a00904c2 100644
--- a/lib/config/presets/internal/default.ts
+++ b/lib/config/presets/internal/default.ts
@@ -3,7 +3,7 @@ import type { Preset } from '../types';
 /* eslint sort-keys: ["error", "asc", {caseSensitive: false, natural: true}] */
 export const presets: Record<string, Preset> = {
   approveMajorUpdates: {
-    description: 'Require dependency dashboard approval for `major` updates.',
+    description: 'Require Dependency Dashboard approval for `major` updates.',
     packageRules: [
       {
         dependencyDashboardApproval: true,
-- 
GitLab