28 lines
547 B
JSON
28 lines
547 B
JSON
{
|
|
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
|
|
"extends": [
|
|
"config:base"
|
|
],
|
|
"semanticCommits": "enabled",
|
|
"pip_requirements": {
|
|
"fileMatch": ["requirements.txt", "requirements-dev.txt"]
|
|
},
|
|
"packageRules": [
|
|
{
|
|
"description": "Automerge non-major updates",
|
|
"matchUpdateTypes": [
|
|
"minor",
|
|
"patch"
|
|
],
|
|
"matchCurrentVersion": "!/^0/",
|
|
"automerge": true
|
|
},
|
|
{
|
|
"matchManagers": [
|
|
"github-actions"
|
|
],
|
|
"automerge": true
|
|
}
|
|
]
|
|
}
|