Skip to content

Commit

Permalink
⬆️: migrate config .github/renovate.json
Browse files Browse the repository at this point in the history
  • Loading branch information
renovate[bot] authored Nov 9, 2024
1 parent e11c6cd commit 6579838
Showing 1 changed file with 37 additions and 11 deletions.
48 changes: 37 additions & 11 deletions .github/renovate.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,19 @@
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"rebaseWhen": "behind-base-branch",
"dependencyDashboard": true,
"labels": ["dependencies", "no-stale"],
"labels": [
"dependencies",
"no-stale"
],
"commitMessagePrefix": "⬆️",
"commitMessageTopic": "{{depName}}",
"customManagers": [
{
"customType": "regex",
"fileMatch": ["/Dockerfile$", "/build.yaml$"],
"fileMatch": [
"/Dockerfile$",
"/build.yaml$"
],
"matchStringsStrategy": "any",
"matchStrings": [
"ARG BUILD_FROM=(?<depName>.*?):(?<currentValue>.*?)\\s+",
Expand All @@ -18,7 +24,9 @@
},
{
"customType": "regex",
"fileMatch": ["/Dockerfile$"],
"fileMatch": [
"/Dockerfile$"
],
"matchStringsStrategy": "any",
"matchStrings": [
"\\s\\s(?<package>[a-z0-9][a-z0-9-]+)=(?<currentValue>[a-z0-9-:_+~.]+)\\s+"
Expand All @@ -29,7 +37,9 @@
},
{
"customType": "regex",
"fileMatch": ["/Dockerfile$"],
"fileMatch": [
"/Dockerfile$"
],
"matchStrings": [
"ARG GRAFANA_VERSION=[\"']?(?<currentValue>.+?)[\"']?\\s+"
],
Expand All @@ -38,7 +48,9 @@
},
{
"customType": "regex",
"fileMatch": ["/Dockerfile$"],
"fileMatch": [
"/Dockerfile$"
],
"matchStrings": [
"ARG GRAFANA_IMAGE_RENDERER_VERSION=[\"']?(?<currentValue>.+?)[\"']?\\s+"
],
Expand All @@ -48,22 +60,36 @@
],
"packageRules": [
{
"matchDatasources": ["repology"],
"matchDatasources": [
"repology"
],
"automerge": true
},
{
"groupName": "Add-on base image",
"matchDatasources": ["docker"]
"matchDatasources": [
"docker"
]
},
{
"groupName": "Add-on base image",
"matchDatasources": ["docker"],
"matchUpdateTypes": ["minor", "patch"],
"matchDatasources": [
"docker"
],
"matchUpdateTypes": [
"minor",
"patch"
],
"automerge": true
},
{
"matchDatasources": ["github-releases"],
"matchUpdateTypes": ["minor", "patch"],
"matchDatasources": [
"github-releases"
],
"matchUpdateTypes": [
"minor",
"patch"
],
"automerge": true
}
]
Expand Down

0 comments on commit 6579838

Please sign in to comment.