mirror of
https://github.com/thegeeklab/renovate-presets.git
synced 2024-11-14 18:30:40 +00:00
26 lines
764 B
JSON
26 lines
764 B
JSON
{
|
|
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
|
|
"description": ["Preset for use with OpenTofu"],
|
|
"extends": ["github>thegeeklab/renovate-presets:base"],
|
|
"packageRules": [
|
|
{
|
|
"managers": ["terraform"],
|
|
"matchPackageNames": ["hashicorp/terraform"],
|
|
"enabled": false
|
|
}
|
|
],
|
|
"customManagers": [
|
|
{
|
|
"customType": "regex",
|
|
"fileMatch": ["^terraform/.+.tf$", "^.woodpecker/.+.ya?ml$"],
|
|
"matchStrings": [
|
|
"required_version = \"?([=><\\s]+)?(?<currentValue>[^\"]+)\"?",
|
|
"tofu_version: \"?(?<currentValue>.*?)\"?\\s"
|
|
],
|
|
"datasourceTemplate": "github-releases",
|
|
"depNameTemplate": "opentofu/opentofu",
|
|
"extractVersionTemplate": "^v?(?<version>.*)$"
|
|
}
|
|
]
|
|
}
|