Skip to content

Commit

Permalink
Don't update checkstyle on old branches
Browse files Browse the repository at this point in the history
  • Loading branch information
sbrunner committed Oct 2, 2024
1 parent df71bb0 commit 3023801
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion .github/renovate.json5
Original file line number Diff line number Diff line change
Expand Up @@ -107,9 +107,15 @@
},
/** Accept only the patch on the stabilization branches */
{
matchBaseBranches: ['/3\\..*/'],
matchBaseBranches: ['/^3\\..*/'],
matchUpdateTypes: ['major', 'minor', 'pin', 'digest', 'lockFileMaintenance', 'rollback', 'bump'],
enabled: false,
},
/** Don't update checkstyle on old branches */
{
matchBaseBranches: ['/^3.2[2-9]$/', '/^3.30$/'],
matchPackageNames: ['checkstyle'],
enabled: false,
},
],
}

0 comments on commit 3023801

Please sign in to comment.