Migrate renovate config (#842)

* ⬆️: migrate config .github/renovate.json

* Prettified Code!

---------

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: renovate[bot] <renovate[bot]@users.noreply.github.com>
This commit is contained in:
renovate[bot] 2025-02-06 21:28:33 +01:00 committed by GitHub
parent c974e915b3
commit 8057c00819
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

18
.github/renovate.json vendored
View file

@ -5,8 +5,9 @@
"labels": ["dependencies", "no-stale"],
"commitMessagePrefix": "⬆️",
"commitMessageTopic": "{{depName}}",
"regexManagers": [
"customManagers": [
{
"customType": "regex",
"fileMatch": ["/Dockerfile$", "/build.yaml$"],
"matchStringsStrategy": "any",
"matchStrings": [
@ -16,6 +17,7 @@
"datasourceTemplate": "docker"
},
{
"customType": "regex",
"fileMatch": ["/Dockerfile$"],
"matchStrings": [
"ARG HA_CLI_VERSION=[\"']?(?<currentValue>.+?)[\"']?\\s+"
@ -25,12 +27,14 @@
"versioningTemplate": "loose"
},
{
"customType": "regex",
"fileMatch": ["/Dockerfile$"],
"matchStrings": ["ARG TTYD_VERSION=[\"']?(?<currentValue>.+?)[\"']?\\s+"],
"datasourceTemplate": "github-tags",
"depNameTemplate": "tsl0922/ttyd"
},
{
"customType": "regex",
"fileMatch": ["/Dockerfile$"],
"matchStringsStrategy": "any",
"matchStrings": [
@ -74,20 +78,20 @@
{
"groupName": "Docker",
"matchDatasources": ["repology"],
"matchPackagePatterns": ["^alpine_.*/docker.*$"],
"automerge": true
"automerge": true,
"matchPackageNames": ["/^alpine_.*/docker.*$/"]
},
{
"groupName": "OpenSSL",
"matchDatasources": ["repology"],
"matchPackagePatterns": ["^alpine_.*/openssl.*$"],
"automerge": true
"automerge": true,
"matchPackageNames": ["/^alpine_.*/openssl.*$/"]
},
{
"groupName": "Python",
"matchDatasources": ["repology"],
"matchPackagePatterns": ["^alpine_.*/python3(-dev)?$"],
"automerge": true
"automerge": true,
"matchPackageNames": ["/^alpine_.*/python3(-dev)?$/"]
}
]
}