Skip to content

Commit

Permalink
CI: Renovate: don't group major upgrades together (#1321)
Browse files Browse the repository at this point in the history
  • Loading branch information
emmercm authored Aug 28, 2024
1 parent ecfca00 commit be15b05
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion .github/renovate.json5
Original file line number Diff line number Diff line change
Expand Up @@ -151,7 +151,9 @@
'^@typescript-eslint',
'^eslint',
],
groupName: 'ESLint'
groupName: 'ESLint',
// Only group non-major updates
matchUpdateTypes: ['patch', 'minor']
},
{
// Group Jest together because of peerDependencies
Expand All @@ -162,6 +164,8 @@
'ts-jest',
],
groupName: 'Jest',
// Only group non-major updates
matchUpdateTypes: ['patch', 'minor']
},
{
// Separate TypeScript because upgrades are dependent on support by other dependencies
Expand Down

0 comments on commit be15b05

Please sign in to comment.