⬆️: migrate config .github/renovate.json

This commit is contained in:
renovate[bot] 2025-01-04 15:53:22 +00:00 committed by GitHub
parent 9968258977
commit 97a6f78e99
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

66
.github/renovate.json vendored
View file

@ -1,14 +1,23 @@
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"schedule": ["before 2am"],
"schedule": [
"before 2am"
],
"rebaseWhen": "behind-base-branch",
"dependencyDashboard": true,
"labels": ["dependencies", "no-stale"],
"labels": [
"dependencies",
"no-stale"
],
"commitMessagePrefix": "⬆️",
"commitMessageTopic": "{{depName}}",
"regexManagers": [
"customManagers": [
{
"fileMatch": ["/Dockerfile$", "/build.yaml$"],
"customType": "regex",
"fileMatch": [
"/Dockerfile$",
"/build.yaml$"
],
"matchStringsStrategy": "any",
"matchStrings": [
"ARG BUILD_FROM=(?<depName>.*?):(?<currentValue>.*?)\\s+",
@ -17,7 +26,10 @@
"datasourceTemplate": "docker"
},
{
"fileMatch": ["/Dockerfile$"],
"customType": "regex",
"fileMatch": [
"/Dockerfile$"
],
"matchStrings": [
"ARG BASHIO_VERSION=[\"']?(?<currentValue>.+?)[\"']?\\s+"
],
@ -26,7 +38,10 @@
"versioningTemplate": "semver"
},
{
"fileMatch": ["/Dockerfile$"],
"customType": "regex",
"fileMatch": [
"/Dockerfile$"
],
"matchStrings": [
"ARG S6_OVERLAY_VERSION=[\"']?(?<currentValue>.+?)[\"']?\\s+"
],
@ -36,7 +51,10 @@
"extractVersionTemplate": "^v(?<version>.*)$"
},
{
"fileMatch": ["/Dockerfile$"],
"customType": "regex",
"fileMatch": [
"/Dockerfile$"
],
"matchStrings": [
"ARG TEMPIO_VERSION=[\"']?(?<currentValue>.+?)[\"']?\\s+"
],
@ -45,7 +63,10 @@
"versioningTemplate": "loose"
},
{
"fileMatch": ["/Dockerfile$"],
"customType": "regex",
"fileMatch": [
"/Dockerfile$"
],
"matchStringsStrategy": "any",
"matchStrings": [
"\\s\\s(?<package>[a-z0-9-]+)=(?<currentValue>[a-z0-9-_+~.]+)\\s+"
@ -57,23 +78,38 @@
],
"packageRules": [
{
"matchDatasources": ["github-releases"],
"matchDepNames": ["hassio-addons/bashio"],
"matchUpdateTypes": ["minor", "patch"],
"matchDatasources": [
"github-releases"
],
"matchDepNames": [
"hassio-addons/bashio"
],
"matchUpdateTypes": [
"minor",
"patch"
],
"automerge": true
},
{
"matchDatasources": ["repology"],
"matchDatasources": [
"repology"
],
"automerge": true
},
{
"groupName": "Ubuntu base image",
"matchDatasources": ["docker"]
"matchDatasources": [
"docker"
]
},
{
"groupName": "Ubuntu base image",
"matchDatasources": ["docker"],
"matchUpdateTypes": ["patch"],
"matchDatasources": [
"docker"
],
"matchUpdateTypes": [
"patch"
],
"automerge": true
}
]