Skip to content

Commit

Permalink
chore(deps): fix renovate config (#373)
Browse files Browse the repository at this point in the history
* chore(deps): fix renovate config
  • Loading branch information
nielm authored Jul 29, 2024
1 parent 66c48a6 commit ccc341a
Showing 1 changed file with 5 additions and 15 deletions.
20 changes: 5 additions & 15 deletions renovate.json5
Original file line number Diff line number Diff line change
Expand Up @@ -14,44 +14,34 @@
groupName: "npm-engine-versions",
},
{
// Only allow minor updates for all NPM packages except googleapis
// And group into a single PR.
description: "Group minor/patch updates for all NPM packages except googleapis",
matchDatasources: ["npm"],
matchUpdateTypes: ["minor"],
matchUpdateTypes: ["minor", "patch"],
excludePackageNames: ["googleapis"],
groupName: "npm-packages",
},
{
// Incldude major updates for GoogleAPIs NPM package
description: "Allow all update types for googleapis",
matchDatasources: ["npm"],
matchUpdateTypes: ["major"],
matchPackageNames: ["googleapis"],
groupName: "npm-packages",
},
{
// Separate group for other major NPM updates, that does not create PRs
description: "Group for non-googleapis major NPM updates, that does not create PRs",
matchDatasources: ["npm"],
matchUpdateTypes: ["major"],
excludePackageNames: ["googleapis"],
groupName: "npm-major-packages",
dependencyDashboardApproval: true,
},
{
matchDatasources: ["terraform-module"],
groupName: "terraform",
},
{
matchDatasources: ["terraform-provider"],
matchDatasources: ["terraform-module", "terraform-provider"],
groupName: "terraform",
},
{
matchDatasources: ["docker"],
groupName: "docker-containers",
},
{
matchDatasources: ["docker"],
groupName: "docker-containers",
},
],
rangeStrategy: "bump",
}

0 comments on commit ccc341a

Please sign in to comment.