Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
67 changes: 62 additions & 5 deletions .github/renovate.json
Original file line number Diff line number Diff line change
Expand Up @@ -150,17 +150,55 @@
},
{
"customType": "regex",
"description": "Bump shoot-grafter image version in Chart.yaml",
"description": "Update shoot-grafter appVersion in Chart.yaml",
"managerFilePatterns": [
"^shoot-grafter/chart/Chart\\.yaml$"
"^shoot-grafter/charts/Chart\\.yaml$"
],
"matchStrings": [
"appVersion: \"(?<currentValue>sha-[a-f0-9]+)@sha256:[a-f0-9]+\""
"appVersion:\\s*\"(?<currentValue>sha-[a-f0-9]+)\""
],
"datasourceTemplate": "docker",
"depNameTemplate": "ghcr.io/cloudoperators/shoot-grafter",
"currentValueTemplate": "{{{currentValue}}}",
"extractVersionTemplate": "^(?<version>sha-.*)$"
"versioningTemplate": "regex:^sha-(?<major>[a-f0-9]+)$"
},
{
"customType": "regex",
"description": "Bump shoot-grafter chart version in Chart.yaml",
"managerFilePatterns": [
"^shoot-grafter/charts/Chart\\.yaml$"
],
"matchStrings": [
"name:\\s*shoot-grafter\\nversion:\\s*(?<currentValue>\\d+\\.\\d+\\.\\d+)"
],
"datasourceTemplate": "docker",
"depNameTemplate": "ghcr.io/cloudoperators/shoot-grafter",
"versioningTemplate": "regex:^sha-(?<major>[a-f0-9]+)$"
},
{
"customType": "regex",
"description": "Bump shoot-grafter spec.version in plugindefinition.yaml",
"managerFilePatterns": [
"^shoot-grafter/plugindefinition\\.yaml$"
],
"matchStrings": [
"description:[^\\n]*\\n\\s+version:\\s*(?<currentValue>\\d+\\.\\d+\\.\\d+)"
],
"datasourceTemplate": "docker",
"depNameTemplate": "ghcr.io/cloudoperators/shoot-grafter",
"versioningTemplate": "regex:^sha-(?<major>[a-f0-9]+)$"
},
{
"customType": "regex",
"description": "Bump shoot-grafter helmChart.version in plugindefinition.yaml",
"managerFilePatterns": [
"^shoot-grafter/plugindefinition\\.yaml$"
],
"matchStrings": [
"helmChart:\\n\\s+name:\\s*shoot-grafter\\n\\s+repository:[^\\n]*\\n\\s+version:\\s*(?<currentValue>\\d+\\.\\d+\\.\\d+)"
],
"datasourceTemplate": "docker",
"depNameTemplate": "ghcr.io/cloudoperators/shoot-grafter",
"versioningTemplate": "regex:^sha-(?<major>[a-f0-9]+)$"
}
],
"packageRules": [
Expand Down Expand Up @@ -276,6 +314,25 @@
"Makefile"
],
"groupName": "Makefile dependencies"
},
{
"matchManagers": [
"custom.regex"
],
"matchPackageNames": [
"ghcr.io/cloudoperators/shoot-grafter"
],
"matchFileNames": [
"shoot-grafter/charts/Chart.yaml",
"shoot-grafter/plugindefinition.yaml"
],
"groupName": "shoot-grafter image and versions",
"commitMessageTopic": "shoot-grafter",
"commitMessageExtra": "to {{newValue}}",
"additionalBranchPrefix": "shoot-grafter-",
"semanticCommits": "enabled",
"semanticCommitType": "chore",
"semanticCommitScope": "deps"
}
],
"separateMinorPatch": true
Expand Down
Loading