-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrenovate.json
38 lines (38 loc) · 900 Bytes
/
renovate.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
34
35
36
37
38
{
"extends": [
"config:recommended",
":disableDependencyDashboard"
],
"prHourlyLimit": 0,
"packageRules": [
{
"matchUpdateTypes": [
"major",
"minor",
"patch",
"pin",
"pinDigest",
"digest",
"replacement"
],
"automerge": true,
"automergeType": "pr",
"automergeStrategy": "squash"
}
],
"customManagers": [
{
"description": "Runner version",
"customType": "regex",
"fileMatch": [
"^\\.github\\/workflows\\/[^/]+\\.ya?ml$"
],
"matchStrings": [
".*VERSION: .(?<currentValue>.*). # renovate: datasource=(?<datasource>\\S+) depName=(?<depName>\\S+)( versioning=(?<versioning>.*?))?\\n"
],
"versioningTemplate": "{{#if versioning}}{{{versioning}}}{{else}}semver{{/if}}"
}
],
"platformAutomerge": true,
"pinDigests": true
}