-
Notifications
You must be signed in to change notification settings - Fork 59
Expand file tree
/
Copy pathrenovate.json
More file actions
24 lines (24 loc) · 807 Bytes
/
renovate.json
File metadata and controls
24 lines (24 loc) · 807 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
{
"extends": ["config:recommended", "group:allNonMajor"],
"enabledManagers": [],
"customManagers": [
{
"customType": "regex",
"managerFilePatterns": "dockerfiles/docker-bake.hcl",
"matchStrings": [
"#\\s*renovate:\\s*type=(?<type>.*?)\\s*url=(?<url>.*?)\\s*depName=(?<depName>.*?)\\s*(extractVersion=(?<extractVersion>.*?))?\\s*\\S+\\s*=\\s*\"(?<currentValue>.*)\""
],
"registryUrlTemplate": "{{{decodeURIComponent url}}}",
"datasourceTemplate": "{{type}}",
"extractVersionTemplate": "{{#if extractVersion}}{{{extractVersion}}}{{else}}^(?<version>.*)${{/if}}"
}
],
"github-actions": {
"description": "Managed by dependabot",
"enabled": false
},
"dockerfile": {
"description": "Managed manually",
"enabled": false
}
}