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
20 changes: 20 additions & 0 deletions renovate.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,25 @@
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": [
"config:recommended"
],
"packageRules": [
{
"description": "Configure versioning for Pact Broker Docker image",
"matchPackageNames": ["pactfoundation/pact-broker"],
"matchDatasources": ["docker"],
"versioning": "regex:^(?<major>\\d+)\\.(?<minor>\\d+)\\.(?<patch>\\d+)(-pactbroker(?<compatibility>.*))?$"
}
],
"regexManagers": [
{
"description": "Update Pact Broker Docker image version in Helm values",
"fileMatch": ["^charts/pact-broker/values\\.yaml$"],
"matchStrings": [
"# -- Pact Broker image tag \\(immutable tags are recommended\\)\\s+tag:\\s+(?<currentValue>.*?)\\s"
],
"datasourceTemplate": "docker",
"depNameTemplate": "pactfoundation/pact-broker",
"versioningTemplate": "regex:^(?<major>\\d+)\\.(?<minor>\\d+)\\.(?<patch>\\d+)(-pactbroker(?<compatibility>.*))?$"
}
]
}
Loading