-
Notifications
You must be signed in to change notification settings - Fork 46
/
renovate.json
38 lines (38 loc) · 1002 Bytes
/
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
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": [
"github>DanySK/renovate-config"
],
"packageRules": [
{
"description": "Trigger a minor update on some dependencies",
"matchDepNames": [
"/^org\\.apache\\.commons:commons-math3$/",
"/^org\\.danilopianini:listset$/"
],
"semanticCommitScope": "api-deps"
},
{
"description": "Some updates should have type docs",
"matchDepNames": [
"/^org\\.jetbrains\\.dokka.*/",
"gohugoio/hugo"
],
"semanticCommitType": "docs"
},
{
"description": "Identify some updates as core",
"matchDepNames": [
"/^it\\.unibo\\scafi:.*/",
"/^org\\.jetbrains\\.kotlin:.*/",
"/^org\\.protelis:.*/"
],
"semanticCommitScope": "core-deps"
},
{
"description": "Updates to to the site should have type docs",
"matchPaths": ["site/*"],
"semanticCommitType": "docs"
}
]
}