1
0
mirror of https://github.com/tboerger/nixos-config synced 2025-09-22 11:50:36 +02:00
github.com-tboerger-nixos-c.../.github/renovate.json
2024-11-24 15:42:24 +01:00

50 lines
1.3 KiB
JSON

{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": [
"config:recommended",
":semanticCommits",
":semanticCommitType(deps)"
],
"packageRules": [
{
"description": "Semantic commits for major updates",
"matchUpdateTypes": [
"major"
],
"semanticCommitType": "major",
"semanticCommitScope": "deps",
"automerge": true
},
{
"description": "Semantic commits for minor updates",
"matchUpdateTypes": [
"minor"
],
"semanticCommitType": "minor",
"semanticCommitScope": "deps",
"automerge": true
},
{
"description": "Semantic commits for patch updates",
"matchUpdateTypes": [
"patch"
],
"semanticCommitType": "patch",
"semanticCommitScope": "deps",
"automerge": true
},
{
"description": "Build tool version upgrades",
"matchManagers": [
"github-actions"
],
"semanticCommitType": "ci",
"semanticCommitScope": "tools",
"automerge": true
}
],
"labels": [
"renovate"
]
}