Skip to content

Commit

Permalink
fix: update renovate.json configuration
Browse files Browse the repository at this point in the history
  • Loading branch information
MountainGod2 committed Oct 27, 2024
1 parent 04e6bae commit 5d9364f
Showing 1 changed file with 55 additions and 28 deletions.
83 changes: 55 additions & 28 deletions .github/renovate.json
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"
]
}

0 comments on commit 5d9364f

Please sign in to comment.