-
Notifications
You must be signed in to change notification settings - Fork 0
/
renovate.json
46 lines (46 loc) · 1.45 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
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": [
"config:best-practices",
":disableRateLimiting",
":disablePrControls",
"helpers:pinGitHubActionDigests",
"security:openssf-scorecard"
],
"commitBodyTable": 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": [
{
"matchManagers": ["kubernetes"],
"semanticCommitType": "manifest",
"semanticCommitScope": null
},
{
"matchDepNames": ["ghcr.io/discordjs-japan/om"],
"automerge": true,
"automergeType": "branch",
"ignoreTests": true
},
{ "matchFileNames": ["k3s-upgrade/plans.yaml"], "pinDigests": false }
]
}