Skip to content

Commit

Permalink
ci: update new renovate config
Browse files Browse the repository at this point in the history
  • Loading branch information
tboerger committed Jun 5, 2023
1 parent 3547aab commit 2e1bb63
Showing 1 changed file with 35 additions and 3 deletions.
38 changes: 35 additions & 3 deletions .github/renovate.json
Original file line number Diff line number Diff line change
@@ -1,9 +1,41 @@
{
"extends": [
"config:base"
"config:base",
":semanticCommits",
":semanticCommitType(deps)",
":automergeMinor"
],
"enabledManagers": [
"kustomize"
"packageRules": [
{
"description": "Semantic commits for major versions",
"groupName": "major versions",
"matchUpdateTypes": [
"major"
],
"semanticCommitType": "deps",
"semanticCommitScope": "major",
"automerge": false
},
{
"description": "Semantic commits for minor versions",
"groupName": "minor versions",
"matchUpdateTypes": [
"minor"
],
"semanticCommitType": "deps",
"semanticCommitScope": "minor",
"automerge": false
},
{
"description": "Semantic commits for patch versions",
"groupName": "patch versions",
"matchUpdateTypes": [
"patch"
],
"semanticCommitType": "deps",
"semanticCommitScope": "patch",
"automerge": true
}
],
"labels": [
"renovate"
Expand Down

0 comments on commit 2e1bb63

Please sign in to comment.