Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
33 changes: 26 additions & 7 deletions .github/renovate.json5
Original file line number Diff line number Diff line change
@@ -1,21 +1,40 @@
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"branchPrefix": "users/renovate/",
"timezone": "US/Central",
"extends": [
"config:recommended",
":maintainLockFilesWeekly",
":automergePatch",
"schedule:automergeDaily",
"helpers:pinGitHubActionDigestsToSemver",
":enableVulnerabilityAlerts"
],
"packageRules": [
{
// Do not update Python packages when new versions are released. Instead,
// let lock file maintenance update them once a week.
"enabled": false,
"matchCategories": ["python"]
// Update GitHub Actions on weekends.
"matchCategories": ["github-actions"],
"groupName": "GitHub Actions",
"groupSlug": "github",
"schedule": [
"* * * * 0,6"
]
},
{
// Update Python packages on weekends.
"matchCategories": ["python"],
"groupName": "Python packages",
"groupSlug": "python",
"schedule": [
"* * * * 0,6"
]
}
],
"lockFileMaintenance": {
// Maintain lock files on early Tuesday mornings. This is primarily to
// update indirect dependencies that aren't handled by the Python packages
// group.
"enabled": true,
"schedule": [
"* 0-3 * * 2"
]
},
"osvVulnerabilityAlerts": true
}