Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Configure Renovate. #4

Merged
merged 2 commits into from
Oct 8, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
}
]
}
Loading