Skip to content

Commit

Permalink
update renovate settings
Browse files Browse the repository at this point in the history
* inherit from cake-contrib/renovate-presets:cake-recipe
* inherit from cake-contrib/renovate-presets:github-actions
* disable updating Cake, for non major updates
* add the "breaking change" label to all Cake major updates
* add the milestone vNext to each PR
  • Loading branch information
nils-a committed Feb 23, 2024
1 parent 369a5e5 commit c6e06b7
Showing 1 changed file with 15 additions and 4 deletions.
19 changes: 15 additions & 4 deletions .github/renovate.json
Original file line number Diff line number Diff line change
@@ -1,10 +1,21 @@
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": [ "github>nils-a/renovate-config" ],
"extends": [
"github>cake-contrib/renovate-presets:cake-recipe",
"github>cake-contrib/renovate-presets:github-actions" ],
"packageRules": [
{
"matchPackageNames": ["cake.tool", "Cake.Core"],
"description": "Update Cake references only for major updates.",
"matchPackageNames": ["Cake.Core", "Cake.Common"],
"matchUpdateTypes": ["minor", "patch"],
"enabled": false
},
{
"description": "Updates to Cake.Core references are breaking.",
"matchPackageNames": ["Cake.Core"],
"matchUpdateTypes": ["major"],
"labels": ["Breaking Change"]
}
]
}
],
"milestone": 18
}

0 comments on commit c6e06b7

Please sign in to comment.