From d01461d3896bd9791783341999207fb2fa0244e4 Mon Sep 17 00:00:00 2001 From: Ben Elan Date: Wed, 7 Feb 2024 01:15:16 -0800 Subject: [PATCH] ci(renovate): remove rate limiting on esri and stencil deps (#8693) **Related Issue:** # ## Summary Removes the limit on the number of renovate pull requests than can be open concurrently. This came up on a Teams thread because the Calcite UI icons did not get updated in a timely manner. --- .renovaterc.json | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/.renovaterc.json b/.renovaterc.json index 7d7ecdfc5db..87c6dec36ef 100644 --- a/.renovaterc.json +++ b/.renovaterc.json @@ -3,6 +3,7 @@ "extends": [ "config:base", "npm:unpublishSafe", + "schedule:daily", "workarounds:typesNodeVersioning", ":pinAllExceptPeerDependencies", ":widenPeerDependencies" @@ -10,7 +11,6 @@ "platformCommit": true, "enabledManagers": ["npm"], "timezone": "America/Los_Angeles", - "schedule": ["before 5am on every weekday"], "labels": ["dependencies"], "ignoreDeps": [ "@types/jest", @@ -35,6 +35,11 @@ "semanticCommitType": "build", "semanticCommitScope": "deps", "addLabels": ["chore"] + }, + { + "matchPackagePatterns": ["^@(esri|stencil)/*"], + "schedule": ["8am", "12pm", "4pm"], + "extends": [":disableRateLimiting"] } ] }