From 8037616a8d767d3d97ea554d9dbd4e6293bb771d Mon Sep 17 00:00:00 2001 From: "pattishin@google.com" Date: Tue, 15 Aug 2023 11:11:37 -0700 Subject: [PATCH 1/2] refactor: only allow for major releases to be aired, no minor updates --- renovate.json | 32 ++++++++++++++++++++++---------- 1 file changed, 22 insertions(+), 10 deletions(-) diff --git a/renovate.json b/renovate.json index 1e108e1596..2f9340f5e4 100644 --- a/renovate.json +++ b/renovate.json @@ -2,18 +2,30 @@ "extends": [ "config:base" ], - "dependencyDashboardAutoclose": true, - "schedule": "after 11am every 2 weeks on Monday", - "timezone": "America/Los_Angeles", - "stabilityDays": 5, - "prConcurrentLimit": 0, - "prHourlyLimit": 4, - "rangeStrategy": "pin", - "pinVersions": false, - "rebaseStalePrs": false, + "baseBranches": ["main"], + "packageRules": [ + { + "matchUpdateTypes": ["major"], + "matchBaseBranches": ["main"], + "addLabels": ["major"] + }, + { + "matchUpdateTypes": ["minor"], + "matchBaseBranches": ["main"], + "enabled": false + } + ], "force": { "constraints": { "node": "< 15.0.0" } - } + }, + "prConcurrentLimit": 0, + "dependencyDashboardAutoclose": true, + "schedule": "after 11am every 3 weeks on Monday", + "timezone": "America/Los_Angeles", + "stabilityDays": 15, + "rangeStrategy": "pin", + "pinVersions": false, + "rebaseStalePrs": false } From 6031885abbc5cad09e190d5771c92872d9c71555 Mon Sep 17 00:00:00 2001 From: Patti Shin Date: Wed, 16 Aug 2023 13:15:32 -0700 Subject: [PATCH 2/2] Update renovate.json Co-authored-by: Karl Weinmeister <11586922+kweinmeister@users.noreply.github.com> --- renovate.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/renovate.json b/renovate.json index 2f9340f5e4..7fbbdae402 100644 --- a/renovate.json +++ b/renovate.json @@ -10,7 +10,7 @@ "addLabels": ["major"] }, { - "matchUpdateTypes": ["minor"], + "matchUpdateTypes": ["minor", "patch"], "matchBaseBranches": ["main"], "enabled": false }