-
Notifications
You must be signed in to change notification settings - Fork 52
/
renovate.json5
55 lines (55 loc) · 1.08 KB
/
renovate.json5
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
{
extends: [
"github>cybozu/renovate-config",
":prConcurrentLimitNone"
],
ignorePaths: [
"**/node_modules/**",
"**/bower_components/**",
"**/vendor/**",
"**/__tests__/**",
"**/test/**",
"**/tests/**",
"**/__fixtures__/**",
],
npm: {
fileMatch: [
"^packages/create-plugin/templates/([^/]+/)*with-plugin-uploader\\.json$",
],
packageRules: [
{
// set `chore` to the commit for updating packages
matchPackagePatterns: [
"*"
],
semanticCommitType: "chore",
},
{
// automerge minor updates of devDependencies
matchPackagePatterns: [
"*"
],
matchDepTypes: [
"devDependencies"
],
matchUpdateTypes: [
"minor"
],
automerge: true,
},
],
},
"packageRules": [
{
// Third party actions should be pinned with digest
"matchDepTypes": [
"action"
],
excludePackagePrefixes: [
"actions/",
"cybozu/"
],
"pinDigests": true
}
]
}