-
Notifications
You must be signed in to change notification settings - Fork 0
/
renovate.json
52 lines (52 loc) · 1.57 KB
/
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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": [
"config:best-practices",
":disableRateLimiting",
":disablePrControls",
"helpers:pinGitHubActionDigests"
],
"ignoreTests": true,
"automergeStrategy": "squash",
"assignAutomerge": true,
"kubernetes": {
"fileMatch": [
"\\.yaml$"
]
},
"customManagers": [
{
"customType": "regex",
"fileMatch": ["k3s-upgrade/plans.yaml"],
"matchStrings": ["version\\s*:\\s*[\"']?(?<currentValue>.+?)[\"']?\\s"],
"depNameTemplate": "k3s",
"versioningTemplate": "semver-coerced",
"datasourceTemplate": "custom.k3s"
}
],
"customDatasources": {
"k3s": {
"defaultRegistryUrlTemplate": "https://update.k3s.io/v1-release/channels",
"transformTemplates": [
"{\"releases\":[{\"version\": $$.(data[id = 'latest'].latest),\"sourceUrl\":\"https://github.com/k3s-io/k3s\",\"changelogUrl\":$join([\"https://github.com/k3s-io/k3s/releases/tag/\",data[id = 'latest'].latest])}],\"sourceUrl\": \"https://github.com/k3s-io/k3s\",\"homepage\": \"https://k3s.io/\"}"
]
}
},
"packageRules": [
{
"matchFileNames": ["**/*.yaml"],
"semanticCommitType": "manifest",
"semanticCommitScope": null,
"commitMessageTopic": "{{depName}}"
},
{ "matchFileNames": ["k3s-upgrade/plans.yaml"], "pinDigests": false },
{
"matchPackageNames": [
"ghcr.io/4m-mazi/fixup-twitter-link",
"ghcr.io/4m-mazi/osekkai-chan"
],
"automerge": true,
"automergeType": "branch"
}
]
}