Skip to content

Commit

Permalink
Configure Renovate (#8)
Browse files Browse the repository at this point in the history
* Add renovate.json

* Update renovate.json with new configuration options

---------

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: Lars Schou <lars@billy.dk>
  • Loading branch information
renovate[bot] and negoziator authored Oct 8, 2023
1 parent a991031 commit 83ca0cd
Showing 1 changed file with 38 additions and 0 deletions.
38 changes: 38 additions & 0 deletions renovate.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"baseBranches": ["master"],
"extends": [
"config:base",
":disableRateLimiting",
"docker:disable"
],
"rangeStrategy": "update-lockfile",
"packageRules": [
{
"packagePatterns": ["*"],
"updateTypes": ["patch"],
"groupName": "all patch dependencies",
"groupSlug": "update-patch-dependencies",
"enabled": true,
"automerge": false
},
{
"matchDatasources": ["npm"],
"packagePatterns": ["*"],
"updateTypes": ["minor"],
"groupName": "all minor dependencies",
"groupSlug": "update-minor-dependencies",
"enabled": true,
"automerge": false
},
{
"packagePatterns": ["*"],
"updateTypes": ["major"],
"enabled": false
},
{
"packageNames": ["node"],
"enabled": false
}
]
}

0 comments on commit 83ca0cd

Please sign in to comment.