renovate-presets/packer.json

20 lines
939 B
JSON
Raw Normal View History

2024-01-17 21:08:31 +01:00
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"description": ["Preset for use with Hashicorp Packer repositories"],
"extends": ["github>thegeeklab/renovate-presets:base"],
"customManagers": [
{
2024-02-09 10:51:26 +01:00
"customType": "regex",
2024-01-17 21:08:31 +01:00
"fileMatch": ["\\.pkr\\.hcl"],
"matchStrings": [
"required_version[\\s]+=[\\s]+\"=?(?<currentValue>\\S*)\"",
"source[\\s]+=[\\s]+\"github.com/(?<depName>\\S*)\"[\\s]+version[\\s]+=[\\s]+\"(?<currentValue>\\S*)\"",
"version[\\s]+=[\\s]+\"(?<currentValue>\\S*)\"[\\s]+source[\\s]+=[\\s]+\"github.com/(?<depName>\\S*)\""
2024-01-17 21:08:31 +01:00
],
"datasourceTemplate": "github-releases",
"depNameTemplate": "{{#if depName}}{{#if (containsString depName 'hashicorp/')}}{{{replace 'hashicorp/' 'hashicorp/packer-plugin-' depName}}}{{else}}{{{depName}}}{{/if}}{{else}}hashicorp/packer{{/if}}",
"extractVersionTemplate": "^v?(?<version>.*)$"
2024-01-17 21:08:31 +01:00
}
]
}