-
Notifications
You must be signed in to change notification settings - Fork 1
/
default.json
33 lines (33 loc) · 1.21 KB
/
default.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": [
"github>visualon/renovate-config//shared.json",
"github>visualon/renovate-config//vo.json",
":dependencyDashboard",
":assignee(viceice)",
"helpers:pinGitHubActionDigests"
],
"packageRules": [],
"registryAliases": {
"hub.visualon.de": "docker.io",
"ghcr.visualon.de": "ghcr.io"
},
"customManagers": [
{
"customType": "regex",
"description": "Update version: variables in workflows",
"fileMatch": ["^\\.github\\/workflows\\/[^/]+\\.ya?ml$"],
"matchStrings": [
"\\s+version: (?<currentValue>.+?) # renovate: datasource=(?<datasource>.+?) depName=(?<depName>.+?)(?: (?:packageName|lookupName)=(?<packageName>.+?))?(?: versioning=(?<versioning>.+?))?\\s"
]
},
{
"customType": "regex",
"description": "Update _VERSION: variables in workflows",
"fileMatch": ["^\\.github\\/workflows\\/[^/]+\\.ya?ml$"],
"matchStrings": [
"\\s*[A-Z_]+?_VERSION: (?<currentValue>.+?) # renovate: datasource=(?<datasource>.+?) depName=(?<depName>.+?)(?: (?:packageName|lookupName)=(?<packageName>.+?))?(?: versioning=(?<versioning>.+?))?\\s"
]
}
]
}