group renovatebot merge requests

This commit is contained in:
Luca Bilke 2024-04-05 23:33:46 +02:00
parent de8d8c6b2e
commit 051af909c9
No known key found for this signature in database
GPG key ID: AD6630D0A1E650AC

View file

@ -1,38 +1,30 @@
{ {
"$schema": "https://docs.renovatebot.com/renovate-schema.json", "$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": [ "extends": ["config:recommended", ":dependencyDashboard", "group:all"],
"config:recommended", "automerge": true,
":dependencyDashboard" "major": {
], "dependencyDashboardApproval": true
"automerge": true, },
"major": { "customDatasources": {
"dependencyDashboardApproval": true "github-releases-latest": {
}, "defaultRegistryUrlTemplate": "https://api.github.com/repos/{{packageName}}/releases/latest",
"customDatasources": { "transformTemplates": [
"github-releases-latest": { "{\"releases\":[{\"version\": $string(tag_name)}]}"
"defaultRegistryUrlTemplate": "https://api.github.com/repos/{{packageName}}/releases/latest", ]
"transformTemplates": [ }
"{\"releases\":[{\"version\": $string(tag_name)}]}" },
] "customManagers": [
} {
}, "customType": "regex",
"customManagers": [ "fileMatch": ["template$"],
{ "matchStringsStrategy": "combination",
"customType": "regex", "matchStrings": [
"fileMatch": [ "version=(?<currentValue>.*)",
"template$" "distfiles=\"https://github\\.com/(?<depName>.*)/releases/download/v?\\${version}/.*\""
], ],
"matchStringsStrategy": "combination", "extractVersionTemplate": "^v?(?<version>.*)$",
"matchStrings": [ "datasourceTemplate": "custom.github-releases-latest"
"version=(?<currentValue>.*)", }
"distfiles=\"https://github\\.com/(?<depName>.*)/releases/download/v?\\${version}/.*\"" ],
], "enabledManagers": ["custom.regex", "github-actions"]
"extractVersionTemplate": "^v?(?<version>.*)$",
"datasourceTemplate": "custom.github-releases-latest"
}
],
"enabledManagers": [
"custom.regex",
"github-actions"
]
} }