Skip to content

Commit

Permalink
Update renovate config
Browse files Browse the repository at this point in the history
  • Loading branch information
stanlemon committed Dec 19, 2024
1 parent d24b06f commit d657786
Showing 1 changed file with 19 additions and 2 deletions.
21 changes: 19 additions & 2 deletions renovate.json5
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@
':configMigration', // Migrate renovate configuration when necessary
'docker:pinDigests', // Pin Docker digests,
'helpers:pinGitHubActionDigests',
'group:allNonMajor',
],

// Set timezone to Indianapolis
Expand All @@ -33,7 +32,7 @@
],

// Give everything some time to bake
minimumReleaseAge: '7 days',
minimumReleaseAge: '3 days',

// Automerge on by default via a branch
automerge: true,
Expand All @@ -46,6 +45,8 @@
'security',
],
schedule: 'at any time', // Process security updates immediately
automergeType: 'branch',
automerge: true,
},

// Disable lock file maintenance
Expand Down Expand Up @@ -118,5 +119,21 @@
minimumReleaseAge: '9 months',
automerge: false,
},
{
// Group all non-major dependencies
groupName: 'all non-major dependencies',
groupSlug: 'all-minor-patch',
matchPackageNames: [
'*',
],
'matchUpdateTypes': [
'minor',
'patch',
],
matchPackageNames: [
'!/(?:^|/)node$/',
'!/^@stanlemon/',
],
},
],
}

0 comments on commit d657786

Please sign in to comment.