enhanced renovate config
This commit is contained in:
parent
313a8a5492
commit
378f10c992
1 changed files with 36 additions and 20 deletions
|
@ -1,27 +1,43 @@
|
||||||
{
|
{
|
||||||
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
|
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
|
||||||
"extends": [
|
"extends": [
|
||||||
"config:base"
|
"config:recommended"
|
||||||
|
],
|
||||||
|
"platform": "gitea",
|
||||||
|
"packageRules": [
|
||||||
|
{
|
||||||
|
"matchManagers": [
|
||||||
|
"pip_requirements"
|
||||||
|
],
|
||||||
|
"matchFileNames": [
|
||||||
|
"pyproject.toml",
|
||||||
|
"requirements.txt",
|
||||||
|
"requirements/*.txt"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"matchManagers": [
|
||||||
|
"dockerfile"
|
||||||
|
],
|
||||||
|
"matchFileNames": [
|
||||||
|
"Dockerfile",
|
||||||
|
"**/*.dockerfile",
|
||||||
|
"**/Dockerfile.*"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"matchManagers": [
|
||||||
|
"github-actions"
|
||||||
|
],
|
||||||
|
"matchFileNames": [
|
||||||
|
".forgejo/workflows/*.yml",
|
||||||
|
".forgejo/workflows/*.yaml",
|
||||||
|
".github/workflows/*.yml",
|
||||||
|
".github/workflows/*.yaml"
|
||||||
|
]
|
||||||
|
}
|
||||||
],
|
],
|
||||||
"pip_requirements": {
|
|
||||||
"fileMatch": [
|
|
||||||
"^pyproject\\.toml$"
|
|
||||||
]
|
|
||||||
},
|
|
||||||
"dockerfile": {
|
|
||||||
"fileMatch": [
|
|
||||||
"^Dockerfile$"
|
|
||||||
]
|
|
||||||
},
|
|
||||||
"github-actions": {
|
|
||||||
"fileMatch": [
|
|
||||||
"^\\.forgejo\\/workflows\\/.*\\.yml$"
|
|
||||||
]
|
|
||||||
},
|
|
||||||
"labels": [
|
"labels": [
|
||||||
"dependencies"
|
"dependencies"
|
||||||
],
|
]
|
||||||
"lockFileMaintenance": {
|
|
||||||
"enabled": true
|
|
||||||
}
|
|
||||||
}
|
}
|
Loading…
Add table
Add a link
Reference in a new issue