-
Notifications
You must be signed in to change notification settings - Fork 93
/
renovate.json
58 lines (58 loc) · 1.5 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
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": [
"config:base",
"helpers:pinGitHubActionDigests",
":gitSignOff"
],
"timezone": "America/Toronto",
"schedule": ["on the 2nd and 4th day instance on thursday after 9pm"],
"enabledManagers": ["regex", "github-actions"],
"regexManagers": [
{
"fileMatch": [
"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}}"
}
],
"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/2.0.0/**",
"stacks/go/2.1.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
}