renovate-config/renovate.json5

27 lines
877 B
Text
Raw Normal View History

2024-05-15 08:59:54 -05:00
{
"$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"
},
{
2024-08-20 19:45:23 -05:00
"automerge": true,
"automergeType": "branch", // Directly merge to the branch without PR
2024-05-15 08:59:54 -05:00
"description": "Automerge renovate updates",
2024-08-20 19:45:23 -05:00
"ignoreTests": true
2024-05-15 08:59:54 -05:00
"matchPackageNames": ["ghcr.io/renovatebot/renovate"],
"matchUpdateTypes": ["minor", "patch", "digest"],
},
{
"description": "Update renovate only daily",
"extends": ["schedule:daily"]
2024-08-20 19:45:23 -05:00
"matchDepNames": ["ghcr.io/renovatebot/renovate"],
2024-05-15 08:59:54 -05:00
}
]
}