-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathrenovate.json
More file actions
103 lines (103 loc) · 3.45 KB
/
Copy pathrenovate.json
File metadata and controls
103 lines (103 loc) · 3.45 KB
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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": [
"config:recommended",
":dependencyDashboard",
"helpers:pinGitHubActionDigests"
],
"github-actions": {
"managerFilePatterns": [
"/(^|/)(workflow-templates|\\.(?:github|gitea|forgejo)/(?:workflows|actions))/.+\\.ya?ml$/",
"/(^|/)action\\.ya?ml$/",
"/^src/commands/import/templates/.*workflow\\.yaml\\.tmpl$/",
"/^src/commands/import/templates/publish-image-.*\\.yaml\\.tmpl$/"
]
},
"labels": ["dependencies"],
"packageRules": [
{
"description": "Automerge patch updates that pass checks",
"matchUpdateTypes": ["patch"],
"automerge": true,
"matchManagers": ["custom.regex"]
},
{
"description": "Keep the Railpack CLI and BuildKit frontend aligned",
"groupName": "hops-import-railpack",
"matchManagers": ["custom.regex"],
"matchPackageNames": [
"railwayapp/railpack",
"ghcr.io/railwayapp/railpack-frontend"
]
},
{
"description": "Group local-start bootstrap Crossplane pins",
"groupName": "local-start-crossplane-bootstrap",
"matchManagers": ["custom.regex"],
"matchPackageNames": [
"crossplane/crossplane",
"crossplane-contrib/provider-helm",
"crossplane-contrib/provider-kubernetes"
]
},
{
"description": "Conventional commit prefix for bootstrap pin bumps",
"matchManagers": ["custom.regex"],
"matchDatasources": ["github-releases"],
"semanticCommitType": "chore",
"semanticCommitScope": "deps"
}
],
"customManagers": [
{
"customType": "regex",
"description": "Bootstrap Provider package tags (hops local start)",
"managerFilePatterns": [
"bootstrap/providers/**/*.yaml"
],
"matchStrings": [
"package:\\s*xpkg\\.crossplane\\.io/(?<depName>[^:]+):(?<currentValue>v?[0-9][^\\s]+)"
],
"datasourceTemplate": "github-releases",
"packageNameTemplate": "{{depName}}"
},
{
"customType": "regex",
"description": "Crossplane Helm chart version pin in hops local start",
"managerFilePatterns": [
"src/commands/local/start.rs"
],
"matchStrings": [
"const CROSSPLANE_CHART_VERSION: &str = \"(?<currentValue>[^\"]+)\";"
],
"datasourceTemplate": "github-releases",
"packageNameTemplate": "crossplane/crossplane",
"extractVersionTemplate": "^v(?<version>.*)$"
},
{
"customType": "regex",
"description": "Railpack release embedded in hops import fallback",
"managerFilePatterns": [
"src/commands/import/templates/publish-image-railpack.yaml.tmpl"
],
"matchStrings": [
"RAILPACK_VERSION:\\s*\"(?<currentValue>[0-9]+\\.[0-9]+\\.[0-9]+)\""
],
"datasourceTemplate": "github-releases",
"packageNameTemplate": "railwayapp/railpack",
"extractVersionTemplate": "^v(?<version>.*)$"
},
{
"customType": "regex",
"description": "Railpack BuildKit frontend image embedded in hops import fallback",
"managerFilePatterns": [
"src/commands/import/templates/publish-image-railpack.yaml.tmpl"
],
"matchStrings": [
"ghcr\\.io/railwayapp/railpack-frontend:v(?<currentValue>[0-9]+\\.[0-9]+\\.[0-9]+)@(?<currentDigest>sha256:[a-f0-9]{64})"
],
"datasourceTemplate": "docker",
"packageNameTemplate": "ghcr.io/railwayapp/railpack-frontend"
}
]
}