Skip to content

Commit

Permalink
Merge pull request #106 from drewbitt/renovate/migrate-config
Browse files Browse the repository at this point in the history
  • Loading branch information
drewbitt authored Nov 19, 2024
2 parents 14a0b1c + 5d7c4d9 commit 9cdc6b3
Showing 1 changed file with 14 additions and 19 deletions.
33 changes: 14 additions & 19 deletions .github/renovate.json5
Original file line number Diff line number Diff line change
@@ -1,28 +1,23 @@
{
$schema: 'https://docs.renovatebot.com/renovate-schema.json',
extends: [
'config:base',
'group:allNonMajor', // batch non-majors into one PR
':semanticCommits' // nicer commit messages
],
rangeStrategy: 'bump',
$schema: "https://docs.renovatebot.com/renovate-schema.json",
extends: ["config:recommended", "group:allNonMajor", ":semanticCommits"],
rangeStrategy: "bump",
packageRules: [
{
matchUpdateTypes: ['minor', 'patch', 'pin', 'digest'],
matchUpdateTypes: ["minor", "patch", "pin", "digest"],
automerge: true,
timezone: 'America/New_York',
schedule: ['after 5:00pm on Monday'],
requiredStatusChecks: ['Run Tests']
timezone: "America/New_York",
schedule: ["after 5:00pm on Monday"],
},
{
matchUpdateTypes: ['major'],
dependencyDashboardApproval: true
matchUpdateTypes: ["major"],
dependencyDashboardApproval: true,
},
{
matchManagers: ['nodenv'],
extractVersion: '^(?<version>v\\d+)',
rangeStrategy: 'pin',
dependencyDashboardApproval: true
}
]
matchManagers: ["nodenv"],
extractVersion: "^(?<version>v\\d+)",
rangeStrategy: "pin",
dependencyDashboardApproval: true,
},
],
}

0 comments on commit 9cdc6b3

Please sign in to comment.