forked from openedx/edx-platform
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request openedx#36285 from openedx/renovate/migrate-config
chore(config): migrate renovate config
- Loading branch information
Showing
1 changed file
with
35 additions
and
33 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,43 +1,45 @@ | ||
// This file is written in "JSON5" (https://json5.org/) so that we can use comments. | ||
{ | ||
"extends": [ | ||
"config:base", | ||
"schedule:weekly", | ||
":automergeLinters", | ||
":automergeMinor", | ||
":automergeTesters", | ||
":enableVulnerabilityAlerts", | ||
":semanticCommits", | ||
":updateNotScheduled" | ||
extends: [ | ||
'config:recommended', | ||
'schedule:weekly', | ||
':automergeLinters', | ||
':automergeMinor', | ||
':automergeTesters', | ||
':enableVulnerabilityAlerts', | ||
':semanticCommits', | ||
':updateNotScheduled', | ||
], | ||
"packageRules": [ | ||
packageRules: [ | ||
{ | ||
"matchDepTypes": [ | ||
"devDependencies" | ||
matchDepTypes: [ | ||
'devDependencies', | ||
], | ||
"matchUpdateTypes": [ | ||
"lockFileMaintenance", | ||
"minor", | ||
"patch", | ||
"pin" | ||
matchUpdateTypes: [ | ||
'lockFileMaintenance', | ||
'minor', | ||
'patch', | ||
'pin', | ||
], | ||
"automerge": true | ||
automerge: true, | ||
}, | ||
{ | ||
"matchPackagePatterns": ["@edx", "@openedx"], | ||
"matchUpdateTypes": ["minor", "patch"], | ||
"automerge": true | ||
} | ||
matchUpdateTypes: [ | ||
'minor', | ||
'patch', | ||
], | ||
automerge: true, | ||
matchPackageNames: [ | ||
'/@edx/', | ||
'/@openedx/', | ||
], | ||
}, | ||
], | ||
ignoreDeps: [ | ||
'karma-spec-reporter', | ||
], | ||
// When adding an ignoreDep, please include a reason and a public link that we can use to follow up and ensure | ||
// that the ignoreDep is removed. | ||
// This can be done as a comment within the ignoreDeps list. | ||
"ignoreDeps": [ | ||
// karma-spec-reporter>0.20.0 does not seem compatible with our super-old 2016 Karma version (0.13.22). | ||
// Ticket link: None, as upgrading Karma does not strike as worth the benefit. | ||
"karma-spec-reporter" | ||
timezone: 'America/New_York', | ||
prConcurrentLimit: 3, | ||
enabledManagers: [ | ||
'npm', | ||
], | ||
"timezone": "America/New_York", | ||
"prConcurrentLimit": 3, | ||
"enabledManagers": ["npm"] | ||
} |