mirror of
https://github.com/renovatebot/renovate.git
synced 2025-01-13 07:26:26 +00:00
feat(preset): group Ruby on Rails packages (#17193)
This commit is contained in:
parent
86ac3f2963
commit
b45ed0941e
1 changed files with 25 additions and 0 deletions
|
@ -67,6 +67,7 @@ const staticGroups = {
|
|||
'group:phpstan',
|
||||
'group:polymer',
|
||||
'group:resilience4j',
|
||||
'group:rubyOnRails',
|
||||
'group:rubyOmniauth',
|
||||
'group:socketio',
|
||||
'group:springAmqp',
|
||||
|
@ -484,6 +485,30 @@ const staticGroups = {
|
|||
},
|
||||
],
|
||||
},
|
||||
rubyOnRails: {
|
||||
description: 'Group Ruby on Rails packages together.',
|
||||
packageRules: [
|
||||
{
|
||||
matchDatasources: ['rubygems'],
|
||||
matchPackageNames: [
|
||||
'actioncable',
|
||||
'actionmailbox',
|
||||
'actionmailer',
|
||||
'actionpack',
|
||||
'actiontext',
|
||||
'actionview',
|
||||
'activejob',
|
||||
'activemodel',
|
||||
'activerecord',
|
||||
'activestorage',
|
||||
'activesupport',
|
||||
'railties',
|
||||
'rails',
|
||||
],
|
||||
groupName: 'Ruby on Rails packages',
|
||||
},
|
||||
],
|
||||
},
|
||||
rubyOmniauth: {
|
||||
description: 'Group OmniAuth packages together.',
|
||||
packageRules: [
|
||||
|
|
Loading…
Reference in a new issue