-
Notifications
You must be signed in to change notification settings - Fork 0
/
packer.json
19 lines (19 loc) · 939 Bytes
/
packer.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"description": ["Preset for use with Hashicorp Packer repositories"],
"extends": ["github>thegeeklab/renovate-presets:base"],
"customManagers": [
{
"customType": "regex",
"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*)\""
],
"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>.*)$"
}
]
}