Skip to content

Commit

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

* Update renovate.json with base branches, disable rate limiting and docker, update package rules for patch and minor dependencies, and disable major updates and node package updates

---------

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 25f27fd commit 5f18119
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",

Check failure on line 2 in renovate.json

View workflow job for this annotation

GitHub Actions / Test (ubuntu-latest)

Expected indentation of 1 tab but found 4 spaces
"baseBranches": ["master"],

Check failure on line 3 in renovate.json

View workflow job for this annotation

GitHub Actions / Test (ubuntu-latest)

Expected indentation of 1 tab but found 4 spaces
"extends": [

Check failure on line 4 in renovate.json

View workflow job for this annotation

GitHub Actions / Test (ubuntu-latest)

Expected indentation of 1 tab but found 4 spaces
"config:base",

Check failure on line 5 in renovate.json

View workflow job for this annotation

GitHub Actions / Test (ubuntu-latest)

Expected indentation of 2 tabs but found 8 spaces
":disableRateLimiting",

Check failure on line 6 in renovate.json

View workflow job for this annotation

GitHub Actions / Test (ubuntu-latest)

Expected indentation of 2 tabs but found 8 spaces
"docker:disable"

Check failure on line 7 in renovate.json

View workflow job for this annotation

GitHub Actions / Test (ubuntu-latest)

Expected indentation of 2 tabs but found 8 spaces
],

Check failure on line 8 in renovate.json

View workflow job for this annotation

GitHub Actions / Test (ubuntu-latest)

Expected indentation of 1 tab but found 4 spaces
"rangeStrategy": "update-lockfile",

Check failure on line 9 in renovate.json

View workflow job for this annotation

GitHub Actions / Test (ubuntu-latest)

Expected indentation of 1 tab but found 4 spaces
"packageRules": [

Check failure on line 10 in renovate.json

View workflow job for this annotation

GitHub Actions / Test (ubuntu-latest)

Expected indentation of 1 tab but found 4 spaces
{

Check failure on line 11 in renovate.json

View workflow job for this annotation

GitHub Actions / Test (ubuntu-latest)

Expected indentation of 2 tabs but found 8 spaces
"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 5f18119

Please sign in to comment.