Configure Renovate for Spring Boot + Vue.js
This commit is contained in:
parent
bae07732c8
commit
353ea75ef6
1 changed files with 66 additions and 2 deletions
|
|
@ -1,3 +1,67 @@
|
|||
{
|
||||
"$schema": "https://docs.renovatebot.com/renovate-schema.json"
|
||||
}
|
||||
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
|
||||
"extends": [
|
||||
"config:recommended"
|
||||
],
|
||||
"timezone": "Europe/Berlin",
|
||||
"schedule": [
|
||||
"before 6am on monday"
|
||||
],
|
||||
"labels": [
|
||||
"dependencies"
|
||||
],
|
||||
"prConcurrentLimit": 5,
|
||||
"packageRules": [
|
||||
{
|
||||
"description": "Gruppiere Spring Boot Dependencies",
|
||||
"groupName": "Spring Boot",
|
||||
"matchPackagePrefixes": [
|
||||
"org.springframework.boot",
|
||||
"org.springframework"
|
||||
]
|
||||
},
|
||||
{
|
||||
"description": "Gruppiere Vue.js Ecosystem",
|
||||
"groupName": "Vue.js",
|
||||
"matchPackagePrefixes": [
|
||||
"vue",
|
||||
"@vue"
|
||||
]
|
||||
},
|
||||
{
|
||||
"description": "Auto-merge für Minor und Patch Updates",
|
||||
"matchUpdateTypes": [
|
||||
"minor",
|
||||
"patch"
|
||||
],
|
||||
"automerge": true,
|
||||
"automergeType": "pr"
|
||||
},
|
||||
{
|
||||
"description": "Major Updates manuell prüfen",
|
||||
"matchUpdateTypes": [
|
||||
"major"
|
||||
],
|
||||
"automerge": false,
|
||||
"labels": [
|
||||
"dependencies",
|
||||
"major-update"
|
||||
]
|
||||
},
|
||||
{
|
||||
"description": "Docker Base Images wöchentlich prüfen",
|
||||
"matchDatasources": [
|
||||
"docker"
|
||||
],
|
||||
"schedule": [
|
||||
"before 6am on monday"
|
||||
]
|
||||
}
|
||||
],
|
||||
"vulnerabilityAlerts": {
|
||||
"enabled": true,
|
||||
"labels": [
|
||||
"security"
|
||||
]
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Reference in a new issue