diff --git a/lib/config/presets/__snapshots__/index.spec.ts.snap b/lib/config/presets/__snapshots__/index.spec.ts.snap index 1362f381848cbb76b9ba38746212b6947d6ee1f0..e1986daa78fa55cabd171942a82abdb330177806 100644 --- a/lib/config/presets/__snapshots__/index.spec.ts.snap +++ b/lib/config/presets/__snapshots__/index.spec.ts.snap @@ -31,7 +31,7 @@ exports[`config/presets/index resolvePreset migrates automerge in presets 1`] = "branchPrefix": "renovate/", "description": [ "Prefix \`renovate/\` to all branch names.", - "If Renovate detects semantic commits, it will use semantic commit type \`fix\` for dependencies and \`chore\` for all others.", + "Use semantic commit type \`fix\` for dependencies and \`chore\` for all others if semantic commits are in use.", "Require all status checks to pass before any automerging.", "Pin dependency versions for \`devDependencies\` and retain SemVer ranges for others.", ], diff --git a/lib/config/presets/internal/default.ts b/lib/config/presets/internal/default.ts index 8cef075470f4a362b89611f724ccbbb66e6ab902..0c4340b17f996e995d6ea8a1dee26a383b742473 100644 --- a/lib/config/presets/internal/default.ts +++ b/lib/config/presets/internal/default.ts @@ -525,7 +525,7 @@ export const presets: Record<string, Preset> = { }, semanticPrefixFixDepsChoreOthers: { description: - 'If Renovate detects semantic commits, it will use semantic commit type `fix` for dependencies and `chore` for all others.', + 'Use semantic commit type `fix` for dependencies and `chore` for all others if semantic commits are in use.', packageRules: [ { matchPackagePatterns: ['*'], diff --git a/lib/config/presets/internal/group.ts b/lib/config/presets/internal/group.ts index 4e4d71da789ad3e62f636126fdffe6ee6622469e..9fb03c9f02b8252f9adf22527affb3d6bd4bb360 100644 --- a/lib/config/presets/internal/group.ts +++ b/lib/config/presets/internal/group.ts @@ -398,7 +398,7 @@ const staticGroups = { 'group:springWs', 'group:symfony', ], - ignoreDeps: [], + ignoreDeps: [], // Hack to improve onboarding PR description }, resilience4j: { description: 'Group Java Resilience4j packages.', @@ -730,7 +730,7 @@ for (const monorepo of Object.keys(monorepos.presets)) { config.monorepos = { description: 'Group known monorepo packages together.', extends: monorepoNames, - ignoreDeps: [], + ignoreDeps: [], // Hack to improve onboarding PR description }; export const presets: Record<string, Preset> = config; diff --git a/lib/config/presets/internal/replacements.ts b/lib/config/presets/internal/replacements.ts index 414220a60a8102fea24eaed77547a6fce0885967..47428ab9da5528332afe407eb22b85ef355c6c33 100644 --- a/lib/config/presets/internal/replacements.ts +++ b/lib/config/presets/internal/replacements.ts @@ -10,7 +10,7 @@ import { /* eslint sort-keys: ["error", "asc", {"caseSensitive": false, "natural": true}] */ export const presets: Record<string, Preset> = { all: { - description: 'All replacements.', + description: 'Apply crowd-sourced package replacement rules.', extends: [ 'replacements:apollo-server-to-scoped', 'replacements:babel-eslint-to-eslint-parser', @@ -34,6 +34,7 @@ export const presets: Record<string, Preset> = { 'replacements:vsts-task-lib-to-azure-pipelines-task-lib', 'replacements:xmldom-to-scoped', ], + ignoreDeps: [], // Hack to improve onboarding PR description }, 'apollo-server-to-scoped': { description: '`apollo-server` packages became scoped.', diff --git a/lib/config/presets/internal/workarounds.ts b/lib/config/presets/internal/workarounds.ts index b7149d95052974246dfed140e7f8a1ae1c7df578..ef23bd71447bc1c9d081de7a2c49016898390044 100644 --- a/lib/config/presets/internal/workarounds.ts +++ b/lib/config/presets/internal/workarounds.ts @@ -5,7 +5,7 @@ import type { Preset } from '../types'; export const presets: Record<string, Preset> = { all: { description: [ - 'A collection of workarounds for known problems with packages.', + 'Apply crowd-sourced workarounds for known problems with packages.', ], extends: [ 'workarounds:mavenCommonsAncientVersion', @@ -20,7 +20,7 @@ export const presets: Record<string, Preset> = { 'workarounds:disableMavenParentRoot', 'workarounds:containerbase', ], - ignoreDeps: [], + ignoreDeps: [], // Hack to improve onboarding PR description }, containerbase: { description: 'Add some containerbase overrides',