Skip to content

Commit

Permalink
chore(config): migrate config renovate.json5 (#258)
Browse files Browse the repository at this point in the history
  • Loading branch information
renovate-bot authored Nov 20, 2024
1 parent 5b19267 commit 68348a9
Showing 1 changed file with 32 additions and 17 deletions.
49 changes: 32 additions & 17 deletions renovate.json5
Original file line number Diff line number Diff line change
@@ -1,32 +1,47 @@
{
$schema: "https://docs.renovatebot.com/renovate-schema.json",
$schema: 'https://docs.renovatebot.com/renovate-schema.json',
extends: [
"config:recommended",
":semanticCommits",
":semanticCommitTypeAll(fix)",
'config:recommended',
':semanticCommits',
':semanticCommitTypeAll(fix)',
],
packageRules: [
{
description: "Do not create PRs for nodejs/npm engine updates",
matchPackageNames: ["node", "npm"],
matchDepTypes: ["engines"],
description: 'Do not create PRs for nodejs/npm engine updates',
matchPackageNames: [
'node',
'npm',
],
matchDepTypes: [
'engines',
],
dependencyDashboardApproval: true,
groupName: "npm-engine-versions",
groupName: 'npm-engine-versions',
},
{
description: "Group updates for all NPM packages",
matchDatasources: ["npm"],
excludePackageNames: ["npm", "node"],
groupName: "npm-packages",
description: 'Group updates for all NPM packages',
matchDatasources: [
'npm',
],
groupName: 'npm-packages',
matchPackageNames: [
'!npm',
'!node',
],
},
{
matchDatasources: ["terraform-module", "terraform-provider"],
groupName: "terraform",
matchDatasources: [
'terraform-module',
'terraform-provider',
],
groupName: 'terraform',
},
{
matchDatasources: ["docker"],
groupName: "docker-containers",
matchDatasources: [
'docker',
],
groupName: 'docker-containers',
},
],
rangeStrategy: "bump",
rangeStrategy: 'bump',
}

0 comments on commit 68348a9

Please sign in to comment.