renovate-config/renovate.json5
2024-08-20 23:37:13 -05:00

26 lines
826 B
Text

{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"assignees": ["jahanson"],
"extends": ["config:best-practices"],
"semanticCommits": "enabled",
"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"]
}
]
}