renovate-config/renovate.json5

26 lines
877 B
Text

{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": ["config:best-practices"],
"semanticCommits": "enabled",
"assignees": ["jahanson"],
"packageRules": [
{
"description": "use fix scope for renovate updates",
"matchPackageNames": ["ghcr.io/renovatebot/renovate"],
"semanticCommitType": "fix"
},
{
"automerge": true,
"automergeType": "branch", // Directly merge to the branch without PR
"description": "Automerge renovate updates",
"ignoreTests": true
"matchPackageNames": ["ghcr.io/renovatebot/renovate"],
"matchUpdateTypes": ["minor", "patch", "digest"],
},
{
"description": "Update renovate only daily",
"extends": ["schedule:daily"]
"matchDepNames": ["ghcr.io/renovatebot/renovate"],
}
]
}