Skip to content

Commit

Permalink
feat: add new rules (#186)
Browse files Browse the repository at this point in the history
* feat: add new rules

* refactor: disable dry run

* feat: reorder rules

---------

Co-authored-by: Joss Whittle <[email protected]>
  • Loading branch information
rdash99 and JossWhittle authored Oct 17, 2024
1 parent 93a153a commit e8e2415
Showing 1 changed file with 16 additions and 1 deletion.
17 changes: 16 additions & 1 deletion .github/renovate.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ module.exports = {

// Uncomment dryRun to test exotic config options without spamming dozens of
// pull requests onto a repo that you would then need to clean up...
dryRun: "full",
// dryRun: "full",

// Inherit default config options
//extends: ["config:base"],
Expand Down Expand Up @@ -46,11 +46,26 @@ module.exports = {
],

packageRules: [
{
groupName: "all non-major dependencies",
groupSlug: "all-minor-patch",
matchPackageNames: ["*"],
matchUpdateTypes: ["minor", "patch"]
},
{
matchUpdateTypes: ["major"],
dependencyDashboardApproval: true
},
{
groupName: "workflows non-major dependencies",
groupSlug: "workflows-minor-patch",
matchPackageNames: ["SwanseaUniversityMedical/workflows"],
matchUpdateTypes: ["minor", "patch"]
},
{
matchPackageNames: ["SwanseaUniversityMedical/workflows"],
matchUpdateTypes: ["major"],
dependencyDashboardApproval: false
}
],

Expand Down

0 comments on commit e8e2415

Please sign in to comment.