Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(config): improve config:best-practices description #31517

Merged
merged 1 commit into from
Sep 21, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion lib/config/presets/internal/config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,13 @@ import type { Preset } from '../types';

export const presets: Record<string, Preset> = {
'best-practices': {
configMigration: true,
description:
'Preset with best practices from the Renovate maintainers. Recommended for advanced users, who want to follow our best practices.',
extends: [
'config:recommended',
'docker:pinDigests',
'helpers:pinGitHubActionDigests',
':configMigration',
':pinDevDependencies',
],
},
Expand Down
4 changes: 4 additions & 0 deletions lib/config/presets/internal/default.ts
Original file line number Diff line number Diff line change
Expand Up @@ -124,6 +124,10 @@ export const presets: Record<string, Preset> = {
'Do not separate `patch` and `minor` upgrades into separate PRs for the same dependency.',
separateMinorPatch: false,
},
configMigration: {
configMigration: true,
description: 'Enable Renovate configuration migration PRs when needed.',
},
dependencyDashboard: {
dependencyDashboard: true,
description: 'Enable Renovate Dependency Dashboard creation.',
Expand Down