-
Notifications
You must be signed in to change notification settings - Fork 79
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore(config): migrate config renovate.json5 (#258)
- Loading branch information
1 parent
5b19267
commit 68348a9
Showing
1 changed file
with
32 additions
and
17 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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', | ||
} |