-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathrenovate.json
More file actions
90 lines (90 loc) · 2.19 KB
/
renovate.json
File metadata and controls
90 lines (90 loc) · 2.19 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
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": [
"config:base",
"helpers:pinGitHubActionDigests",
":gitSignOff"
],
"timezone": "America/Toronto",
"schedule": [
"* 19-23 * * 0",
"* 0-2 * * 1"
],
"enabledManagers": [
"dockerfile",
"github-actions",
"custom.regex",
"pep621",
"npm"
],
"regexManagers": [
{
"fileMatch": [
"(M|m)akefile$"
],
"matchStrings": [
"RAG_CONTENT_IMAGE\\s+\\?\\=\\s+\"?(?<depName>.*?)\\:release-(?<currentValue>.*)-lcs\"?\\n"
],
"datasourceTemplate": "docker",
"depNameTemplate": "quay.io/redhat-ai-dev/rag-content"
}
],
"packageRules": [
{
"matchUpdateTypes": ["major"],
"enabled": false
},
{
"matchManagers": ["dockerfile"],
"matchPackageNames": ["registry.access.redhat.com/ubi9/ubi-minimal"],
"matchUpdateTypes": ["major", "patch"],
"enabled": false
},
{
"matchManagers": ["dockerfile"],
"matchPackageNames": ["quay.io/lightspeed-core/lightspeed-stack"],
"enabled": false
},
{
"matchManagers": ["pep621"],
"matchPackageNames": ["python"],
"matchUpdateTypes": ["major", "minor"],
"enabled": false
},
{
"matchDepNames": ["quay.io/redhat-ai-dev/rag-content"],
"extractVersion": "^release-(?<version>\\d+\\.\\d+)-l(c|l)s",
"versioning": "loose"
},
{
"matchManagers": ["github-actions"],
"groupName": "github actions",
"groupSlug": "github-actions",
"commitMessageTopic": "{{depName}}"
},
{
"matchManagers": ["dockerfile"],
"groupName": "dockerfile deps",
"groupSlug": "dockerfile-deps",
"commitMessageTopic": "{{depName}}"
},
{
"matchManagers": ["pep621"],
"groupName": "python deps",
"groupSlug": "python-deps",
"commitMessageTopic": "{{depName}}"
},
{
"matchManagers": ["npm"],
"groupName": "npm deps",
"groupSlug": "npm-deps",
"commitMessageTopic": "{{depName}}"
}
],
"vulnerabilityAlerts": {
"enabled": true
},
"prHourlyLimit": 20,
"prConcurrentLimit": 10,
"labels": ["renovatebot"]
}