-
Notifications
You must be signed in to change notification settings - Fork 0
/
renovate.json
39 lines (39 loc) · 1.01 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
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": [
"local>ashleycaselli/renovate-config:docker-image"
],
"automerge": false,
"packageRules": [
{
"description": "Updates to the parent dependencies should trigger a new patch release",
"matchPaths": [
"pom.xml"
],
"semanticCommitType": "chore",
"semanticCommitScope": "core-deps"
},
{
"description": "Updates to the dependencies under the build settings element should not trigger any release",
"matchPaths": [
"pom.xml"
],
"matchDepTypes": [
"build"
],
"semanticCommitType": "build",
"semanticCommitScope": "deps"
},
{
"description": "Updates to the dependencies with scope 'test' should be tagged as test(deps)",
"matchPaths": [
"pom.xml"
],
"matchDepTypes": [
"test"
],
"semanticCommitType": "test",
"semanticCommitScope": "deps"
}
]
}