-
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.
fix: update renovate.json configuration
- Loading branch information
1 parent
04e6bae
commit 5d9364f
Showing
1 changed file
with
55 additions
and
28 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,31 +1,58 @@ | ||
{ | ||
"$schema": "https://docs.renovatebot.com/renovate-schema.json", | ||
"extends": ["config:base"], | ||
"lockFileMaintenance": { | ||
"enabled": true, | ||
"schedule": ["every weekend"] | ||
}, | ||
"packageRules": [ | ||
{ | ||
"matchDatasources": ["pypi"], | ||
"groupName": "Python dependencies", | ||
"matchFileNames": ["pyproject.toml", "uv.lock", "docs/requirements.txt"], | ||
"schedule": ["every weekend"], | ||
"matchUpdateTypes": ["minor", "patch"], | ||
"matchCurrentVersion": "!/^0/", | ||
"automerge": true | ||
}, | ||
{ | ||
"matchDatasources": ["docker"], | ||
"groupName": "Docker dependencies", | ||
"schedule": ["before 3am on the first day of the month"] | ||
} | ||
"$schema": "https://docs.renovatebot.com/renovate-schema.json", | ||
"extends": [ | ||
"config:base" | ||
], | ||
"dependencyDashboardAutoclose": true, | ||
"lockFileMaintenance": { | ||
"enabled": true, | ||
"schedule": [ | ||
"every weekend" | ||
], | ||
"dockerfile": { | ||
"fileMatch": ["Dockerfile"] | ||
"automerge": true | ||
}, | ||
"packageRules": [ | ||
{ | ||
"matchDatasources": [ | ||
"pypi" | ||
], | ||
"groupName": "Python dependencies", | ||
"matchFileNames": [ | ||
"pyproject.toml", | ||
"uv.lock", | ||
"docs/requirements.txt" | ||
], | ||
"schedule": [ | ||
"every weekend" | ||
], | ||
"matchUpdateTypes": [ | ||
"minor", | ||
"patch" | ||
], | ||
"matchCurrentVersion": "!/^0/", | ||
"automerge": true | ||
}, | ||
"labels": ["dependencies"], | ||
"timezone": "Etc/UTC", | ||
"schedule": ["every weekend"] | ||
} | ||
|
||
{ | ||
"matchDatasources": [ | ||
"docker" | ||
], | ||
"groupName": "Docker dependencies", | ||
"schedule": [ | ||
"before 3am on the first day of the month" | ||
] | ||
} | ||
], | ||
"dockerfile": { | ||
"fileMatch": [ | ||
"Dockerfile" | ||
], | ||
"automerge": true | ||
}, | ||
"labels": [ | ||
"dependencies" | ||
], | ||
"timezone": "Etc/UTC", | ||
"schedule": [ | ||
"every weekend" | ||
] | ||
} |