diff --git a/renovate.json5 b/renovate.json5 index 7a7577a9..79a66d45 100644 --- a/renovate.json5 +++ b/renovate.json5 @@ -14,22 +14,20 @@ 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"], @@ -37,21 +35,13 @@ 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", }