-
Notifications
You must be signed in to change notification settings - Fork 95
Expand file tree
/
Copy pathrenovate.json
More file actions
83 lines (83 loc) · 1.96 KB
/
renovate.json
File metadata and controls
83 lines (83 loc) · 1.96 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
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": [
"config:recommended",
"helpers:pinGitHubActionDigests",
":gitSignOff"
],
"timezone": "America/Toronto",
"schedule": [
"* 19-23,0-2 */2,4 * 4"
],
"enabledManagers": [
"custom.regex",
"github-actions",
"tekton"
],
"customManagers": [
{
"customType": "regex",
"managerFilePatterns": [
"/devfile.*y[a]?ml$/"
],
"matchStrings": [
"image: (?<depName>\\S*):(?<currentValue>\\S*)"
],
"datasourceTemplate": "docker",
"depNameTemplate": "{{{depName}}}"
}
],
"packageRules": [
{
"matchManagers": [
"github-actions"
],
"groupName": "github actions",
"groupSlug": "github-actions",
"commitMessageTopic": "{{depName}}"
},
{
"description": "Schedule Konflux tekton task updates Tuesday and Thursday nights (7 PM - 2 AM)",
"matchManagers": [
"tekton"
],
"schedule": [
"* 19-23,0-2 * * 2,4"
]
}
],
"ignorePaths": [
"**/docker/**",
"./.devfile.yaml",
"./.devfile.yml",
"./devfile.yaml",
"./devfile.yml",
".ci/**",
"tests/**",
"stacks/java-openliberty/**",
"stacks/java-openliberty-gradle/**",
"stacks/java-websphereliberty/**",
"stacks/java-websphereliberty-gradle/**",
"stacks/nodejs/**",
"stacks/go/1.0.2/**",
"stacks/go/1.1.0/**",
"stacks/go/1.2.0/**",
"stacks/go/1.2.1/**",
"stacks/go/1.3.0/**",
"stacks/go/1.3.1/**",
"stacks/go/2.0.0/**",
"stacks/go/2.1.0/**",
"stacks/go/2.2.0/**",
"stacks/go/2.3.0/**",
"stacks/go/2.4.0/**",
"stacks/nodejs/2.1.1/**",
"stacks/nodejs-angular/2.0.2/**",
"stacks/nodejs-nextjs/1.0.3/**",
"stacks/nodejs-nuxtjs/1.0.3/**",
"stacks/nodejs-react/2.0.2/**",
"stacks/nodejs-svelte/1.0.3/**",
"stacks/nodejs-vue/1.0.2/**"
],
"prHourlyLimit": 20,
"prConcurrentLimit": 10
}