Skip to content

Commit

Permalink
build: Update renovate config.
Browse files Browse the repository at this point in the history
Update the renovate config in edx-platform to match the standard config
in most of our other frontend repos, with the exception of 1 settings:

Given the size of edx-platform I want to limit the number of concurrent
renovate PRs to a very small number so that we don't overwhelm our CI
resources.  If we find that it would be useful to get more PRs at a
time, we can change this setting in the future.

We've also removed the `rebaseStalePRs` settings since that would be
extra costly on edx-platform for now.
  • Loading branch information
feanil committed Jun 4, 2024
1 parent 83af653 commit 34de5af
Showing 1 changed file with 29 additions and 6 deletions.
35 changes: 29 additions & 6 deletions .github/renovate.json
Original file line number Diff line number Diff line change
@@ -1,11 +1,34 @@
{
"extends": [
"config:base",
"schedule:weekdays",
":preserveSemverRanges"
"schedule:weekly",
":automergeLinters",
":automergeMinor",
":automergeTesters",
":enableVulnerabilityAlerts",
":semanticCommits",
":updateNotScheduled"
],
"prConcurrentLimit": 5,
"includePaths": [
"package.json"
]
"packageRules": [
{
"matchDepTypes": [
"devDependencies"
],
"matchUpdateTypes": [
"lockFileMaintenance",
"minor",
"patch",
"pin"
],
"automerge": true
},
{
"matchPackagePatterns": ["@edx", "@openedx"],
"matchUpdateTypes": ["minor", "patch"],
"automerge": true
}
],
"timezone": "America/New_York",
"prConcurrentLimit": 3,
"enabledManagers": ["npm"]
}

0 comments on commit 34de5af

Please sign in to comment.