forked from kelvindev15/renovate-config
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdefault.json
146 lines (146 loc) · 4.44 KB
/
default.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
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
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
{
"extends": [
"config:base", ":rebaseStalePrs", ":semanticCommits", ":semanticCommitTypeAll(chore)"
],
"assignees": ["kelvin-olaiya"],
"automerge": true,
"dependencyDashboard": true,
"git-submodules": {
"enabled": true
},
"includeForks": true,
"labels": ["dependencies"],
"packageRules": [
{
"description": "Wait one day before proposing updates to github refs",
"matchDatasources": ["git-refs"],
"internalChecksFilter": "strict",
"stabilityDays": 1
},
{
"description": "Wait thee days for hugo releases",
"matchPackageName": ["gohugoio/hugo"],
"internalChecksFilter": "strict",
"stabilityDays": 3
},
{
"description": "Wait three days for npm updates (npm retraction time)",
"matchDatasources": ["npm"],
"internalChecksFilter": "strict",
"stabilityDays": 3
},
{
"description": "Do not wait for updates from relatively stable sources",
"matchDatasources": [
"github-releases",
"github-tags",
"gradle-version",
"maven"
],
"internalChecksFilter": "strict",
"stabilityDays": 0
},
{
"description": "Do not wait for updates from github actions",
"matchManagers": [
"github-actions"
],
"internalChecksFilter": "strict",
"stabilityDays": 0
},
{
"description": "Updates to GitHub Actions should be tagged as 'ci'",
"matchPaths": [".github/workflows/*.yml", ".github/workflows/*.yaml"],
"semanticCommitType": "ci"
},
{
"matchDepNames": "windows github actions runner",
"extractVersion": "^win(?<version>\\d\\d)\/\\d+.\\.\\d+$"
},
{
"matchDepNames": "macos github actions runner",
"extractVersion": "^macOS-(?<version>\\d\\d)\/\\d+.\\.\\d+$"
},
{
"matchDepNames": "ubuntu github actions runner",
"extractVersion": "^ubuntu(?<version>\\d\\d)\/\\d+.\\.\\d+$"
}
],
"prConcurrentLimit": 25,
"prCreation": "immediate",
"prHourlyLimit": 0,
"rebaseWhen": "behind-base-branch",
"regexManagers": [
{
"fileMatch": [
"^(workflow-templates|\\.github\\/workflows)\\/[^/]+\\.[Yy][Aa]?[Mm][Ll]$",
"(^|\\/)action\\.[Yy][Aa]?[Mm][Ll]$"
],
"matchStrings": [
"\\s+hugo-version:\\s+'?\"?(?<version>\\d+(\\.\\d+)*)'?\"?"
],
"depNameTemplate": "gohugoio/hugo",
"currentValueTemplate": "v{{{version}}}",
"packageNameTemplate": "gohugoio/hugo",
"datasourceTemplate": "github-tags",
"versioningTemplate": "docker"
},
{
"fileMatch": [
"^(workflow-templates|\\.github\\/workflows)\\/[^/]+\\.[Yy][Aa]?[Mm][Ll]$",
"(^|\\/)action\\.[Yy][Aa]?[Mm][Ll]$"
],
"matchStrings": [
"\\s+node-version:\\s+'?\"?(?<version>\\d+(\\.\\d+)*)'?\"?"
],
"depNameTemplate": "node",
"currentValueTemplate": "v{{{version}}}",
"packageNameTemplate": "nodejs/node",
"datasourceTemplate": "github-tags",
"versioningTemplate": "docker"
},
{
"fileMatch": [
"^(workflow-templates|\\.github\\/workflows)\\/[^/]+\\.[Yy][Aa]?[Mm][Ll]$",
"(^|\\/)action\\.[Yy][Aa]?[Mm][Ll]$"
],
"matchStrings": [
"windows-\\d\\d(?<currentValue>\\d\\d)"
],
"depNameTemplate": "windows github actions runner",
"packageNameTemplate": "actions/runner-images",
"datasourceTemplate": "github-releases",
"versioningTemplate": "docker"
},
{
"fileMatch": [
"^(workflow-templates|\\.github\\/workflows)\\/[^/]+\\.[Yy][Aa]?[Mm][Ll]$",
"(^|\\/)action\\.[Yy][Aa]?[Mm][Ll]$"
],
"matchStrings": [
"macos-(?<currentValue>\\d\\d)"
],
"depNameTemplate": "macos github actions runner",
"packageNameTemplate": "actions/runner-images",
"datasourceTemplate": "github-releases",
"versioningTemplate": "docker"
},
{
"fileMatch": [
"^(workflow-templates|\\.github\\/workflows)\\/[^/]+\\.[Yy][Aa]?[Mm][Ll]$",
"(^|\\/)action\\.[Yy][Aa]?[Mm][Ll]$"
],
"matchStrings": [
"ubuntu-(?<currentValue>\\d\\d)\\.04"
],
"depNameTemplate": "ubuntu github actions runner",
"packageNameTemplate": "actions/runner-images",
"datasourceTemplate": "github-releases",
"versioningTemplate": "docker"
}
],
"separateMajorMinor": true,
"separateMinorPatch": true,
"separateMultipleMajor": true,
"stabilityDays": 0
}