Skip to content

Commit

Permalink
fix: no automerge for Rails major updates
Browse files Browse the repository at this point in the history
All Rails Major.Minor updates need additional steps.
  • Loading branch information
jgraichen committed Oct 15, 2024
1 parent 0062e17 commit e5b2bd6
Showing 1 changed file with 23 additions and 22 deletions.
45 changes: 23 additions & 22 deletions ruby.json5
Original file line number Diff line number Diff line change
Expand Up @@ -20,28 +20,29 @@
"ruby",
],
},
// Separate Ruby on Rails dependencies as they need to be upgraded
// together, and minors are majors.
{
matchDatasources: ['rubygems'],
matchDepNames: [
'actioncable',
'actionmailbox',
'actionmailer',
'actionpack',
'actiontext',
'actionview',
'activejob',
'activemodel',
'activerecord',
'activestorage',
'activesupport',
'railties',
'rails',
],
matchUpdateTypes: ['major', 'minor'],
groupName: 'Ruby on Rails',
},
// Separate Ruby on Rails dependencies as they need to be upgraded
// together, and minors are majors.
{
matchDatasources: ["rubygems"],
matchDepNames: [
"actioncable",
"actionmailbox",
"actionmailer",
"actionpack",
"actiontext",
"actionview",
"activejob",
"activemodel",
"activerecord",
"activestorage",
"activesupport",
"railties",
"rails",
],
matchUpdateTypes: ["major", "minor"],
groupName: "Ruby on Rails",
automerge: false,
},
],
customManagers: [
{
Expand Down

0 comments on commit e5b2bd6

Please sign in to comment.