Skip to content

Commit

Permalink
Configure RenovateBot
Browse files Browse the repository at this point in the history
? will automerge less-than-minor changes
? will create rollback PRs if updated versions have been pulled afterwards (Note: should not actually happen, because stabilityDays is bigger than time limit for pulling from npm registry)
? will group updates together instead of creating one PR for each dependency
? will only check updates on sundays and only create PRs on saturdays (that is, after one work week has passed)
? will only create PRs for major versions if authorised to on dependency dashboard
? will update only lockfile, if in-range updates are available
? will wait for five days before considering a change stable
  • Loading branch information
Simon Beyer authored and Simon Beyer committed Jul 7, 2022
1 parent 9878c46 commit 029e41a
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions renovate.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,30 @@
{
"extends": [
"config:base"
],
"assignees": ["Zsar"],
"automergeStrategy": "merge-commit",
"automergeSchedule": ["on saturday"],
"configMigration": true,
"rangeStrategy": "update-lockfile",
"reviewers": ["Zsar"],
"rollbackPrs": true,
"schedule": ["on sunday"],
"stabilityDays": 5,
"packageRules": [
{
"groupName": "trivial",
"matchUpdateTypes": ["bump", "digest", "lockFileMaintenance", "patch", "pin", "pinDigest", "rollback"],
"automerge": true
},
{
"groupName": "minor",
"matchUpdateTypes": ["minor"]
},
{
"groupName": "major",
"matchUpdateTypes": ["major"],
"dependencyDashboardApproval": true
}
]
}

0 comments on commit 029e41a

Please sign in to comment.