-
Notifications
You must be signed in to change notification settings - Fork 11
/
renovate.json
69 lines (69 loc) · 2.05 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
{
"enabled": true,
"forkProcessing": "enabled",
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": ["config:base"],
"ignorePaths": [],
"timezone": "America/New_York",
"repositories": ["defenseunicorns/uds-cli"],
"rebaseStalePrs": true,
"schedule": ["after 12pm and before 11am every weekday"],
"dependencyDashboard": true,
"platform": "github",
"onboarding": false,
"dependencyDashboardTitle": "Renovate Dashboard 🤖",
"rebaseWhen": "conflicted",
"commitBodyTable": true,
"suppressNotifications": ["prIgnoreNotification"],
"postUpdateOptions": ["gomodTidy"],
"packageRules": [
{
"matchPackageNames": ["zarf-dev/zarf", "github.com/zarf-dev/zarf"],
"groupName": "zarf"
},
{
"matchPackageNames": [
"stefanprodan/podinfo",
"github.com/stefanprodan/podinfo",
"podinfo"
],
"groupName": "podinfo"
},
{
"matchFileNames": ["action.yaml"],
"groupName": "actions"
}
],
"regexManagers": [
{
"fileMatch": ["uds-bundle.yaml", "action.yaml"],
"matchStrings": [
"# renovate: datasource=(?<datasource>.*) depName=(?<depName>.*)\\n\\s*(version|ref): (?<currentValue>.*)"
],
"versioningTemplate": "semver"
},
{
"fileMatch": ["zarf.yaml"],
"matchStrings": [
"# renovate: datasource=(?<datasource>.*) depName=(?<depName>.*)\\n\\s*(-\\s.*:)(?<currentValue>.*)"
],
"datasourceTemplate": "github-tags"
},
{
"fileMatch": ["generate-schema\\.sh"],
"matchStrings": [
"https://raw\\.githubusercontent\\.com/zarf-dev/zarf/v(?<currentValue>\\d+\\.\\d+\\.\\d+)/zarf\\.schema\\.json"
],
"depNameTemplate": "zarf-dev/zarf",
"datasourceTemplate": "github-releases"
},
{
"fileMatch": ["hack/download-uds-runtime-assets.sh"],
"matchStrings": [
"CURRENT_VERSION=\"v(?<currentValue>\\d+\\.\\d+\\.\\d+)\""
],
"depNameTemplate": "defenseunicorns/uds-runtime",
"datasourceTemplate": "github-releases"
}
]
}