Skip to content

Commit

Permalink
chore: configure renovate to ignore npm/node package versions
Browse files Browse the repository at this point in the history
  • Loading branch information
nielm committed Jul 23, 2024
1 parent e22a52b commit 430456d
Showing 1 changed file with 10 additions and 2 deletions.
12 changes: 10 additions & 2 deletions renovate.json5
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
// And group into a single PR.
matchDatasources: ["npm"],
matchUpdateTypes: ["minor"],
excludePackageNames: ["googleapis", "npm", "node"],
excludePackageNames: ["googleapis"],
groupName: "npm-packages",
},
{
Expand All @@ -25,10 +25,18 @@
// Separate group for other major NPM updates, that does not create PRs
matchDatasources: ["npm"],
matchUpdateTypes: ["major"],
excludePackageNames: ["googleapis", "npm", "node"],
excludePackageNames: ["googleapis"],
groupName: "npm-major-packages",
dependencyDashboardApproval: true,
},
{
description: "Do not create PRs for nodejs/npm engine updates",
matchPackageNames: ["node"],
matchManagers: ["npm"],
matchDepTypes: ["engines"],
dependencyDashboardApproval: true,
groupName: "npm-engine-versions",
},
{
matchDatasources: ["terraform-module"],
groupName: "terraform",
Expand Down

0 comments on commit 430456d

Please sign in to comment.