Skip to content

Commit

Permalink
Renovate: Fix matchBaseBranches
Browse files Browse the repository at this point in the history
  • Loading branch information
sbrunner committed Oct 2, 2024
1 parent 0b8163b commit 3c24c74
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/renovate.json5
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@
},
/** Automerge the patch, the minor and the dev dependency */
{
matchBaseBranches: ['prod-2-7.*', 'prod-2-8.*'],
matchBaseBranches: ['/^prod-2-7.*/', '/^prod-2-8.*/'],
matchUpdateTypes: ['minor', 'patch'],
automerge: true,
},
Expand All @@ -84,12 +84,12 @@
},
/** Accept only the patch on the stabilization branches */
{
matchBaseBranches: ['prod-2-7.*', 'prod-2-8.*'],
matchBaseBranches: ['/^prod-^-7.*/', '/^prod-2-8.*/'],
matchUpdateTypes: ['major', 'minor', 'pin', 'digest', 'rollback', 'bump', 'lockFileMaintenance'],
enabled: false,
},
{
matchBaseBranches: ['prod-2-7.*'],
matchBaseBranches: ['/^prod-2-7.*/'],
matchDatasources: ['docker-compose', 'github-actions'],
enabled: false,
},
Expand All @@ -115,7 +115,7 @@
},
/** Accept only the patch on stabilization branches */
{
matchBaseBranches: ['prod-2-7.*', 'prod-2-8.*'],
matchBaseBranches: ['/^prod-2-7.*/', '/^prod-2-8.*/'],
matchUpdateTypes: ['major', 'minor', 'pin', 'digest', 'lockFileMaintenance', 'rollback', 'bump'],
enabled: false,
},
Expand Down

0 comments on commit 3c24c74

Please sign in to comment.