Skip to content

Commit

Permalink
ci(renovate): remove rate limiting on esri and stencil deps (#8693)
Browse files Browse the repository at this point in the history
**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.
  • Loading branch information
benelan authored Feb 7, 2024
1 parent 107792d commit d01461d
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion .renovaterc.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,14 +3,14 @@
"extends": [
"config:base",
"npm:unpublishSafe",
"schedule:daily",
"workarounds:typesNodeVersioning",
":pinAllExceptPeerDependencies",
":widenPeerDependencies"
],
"platformCommit": true,
"enabledManagers": ["npm"],
"timezone": "America/Los_Angeles",
"schedule": ["before 5am on every weekday"],
"labels": ["dependencies"],
"ignoreDeps": [
"@types/jest",
Expand All @@ -35,6 +35,11 @@
"semanticCommitType": "build",
"semanticCommitScope": "deps",
"addLabels": ["chore"]
},
{
"matchPackagePatterns": ["^@(esri|stencil)/*"],
"schedule": ["8am", "12pm", "4pm"],
"extends": [":disableRateLimiting"]
}
]
}

0 comments on commit d01461d

Please sign in to comment.