Skip to content

Commit

Permalink
chore: update renovate.json5 to ignore npm and node versions in packa…
Browse files Browse the repository at this point in the history
…ge.json
  • Loading branch information
nielm committed Jul 23, 2024
1 parent a05896a commit 41a46c4
Showing 1 changed file with 10 additions and 6 deletions.
16 changes: 10 additions & 6 deletions renovate.json5
Original file line number Diff line number Diff line change
Expand Up @@ -11,22 +11,22 @@
// And group into a single PR.
matchDatasources: ["npm"],
matchUpdateTypes: ["minor"],
excludePackageNames: ["googleapis"],
groupName: "npm",
excludePackageNames: ["googleapis", "npm", "node"],
groupName: "npm-packages",
},
{
// Incldude major updates for GoogleAPIs NPM package
matchDatasources: ["npm"],
matchUpdateTypes: ["major"],
matchPackageNames: ["googleapis"],
groupName: "npm",
groupName: "npm-packages",
},
{
// Separate group for other major NPM updates, that does not create PRs
matchDatasources: ["npm"],
matchUpdateTypes: ["major"],
excludePackageNames: ["googleapis"],
groupName: "npm-major",
excludePackageNames: ["googleapis", "npm", "node"],
groupName: "npm-major-packages",
dependencyDashboardApproval: true,
},
{
Expand All @@ -39,7 +39,11 @@
},
{
matchDatasources: ["docker"],
groupName: "docker",
groupName: "docker-containers",
},
{
matchDatasources: ["docker"],
groupName: "docker-containers",
},
],
rangeStrategy: "bump",
Expand Down

0 comments on commit 41a46c4

Please sign in to comment.