-
Notifications
You must be signed in to change notification settings - Fork 3
/
renovate.json5
56 lines (56 loc) · 1.24 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
56
{
extends: [
"config:base",
],
rebaseWhen: "behind-base-branch",
prCreation: "not-pending",
dependencyDashboard: true,
automerge: true,
major: {
automerge: false,
},
packageRules: [
{
/*
scalatest follows the maven version scheme, but suffixes snapshot versions with -SNAP instead of -SNAPSHOT.
Using the semver version scheme allows it to handle all Maven pre-release qualifiers,
as well as the SNAP qualifier.
TODO: Remove after https://github.com/scalatest/scalatest/issues/1766 is fixed
*/
packageNames: [
"org.scalatest:scalatest",
],
versioning: "semver",
},
{
packageNames: [
"com.permutive:sbt-liquibase",
],
updateTypes: [
"minor",
],
automerge: false,
prBodyNotes: [
":warning: README.md must be updated manually",
],
},
{
packageNames: [
"com.permutive:sbt-liquibase",
],
updateTypes: [
"patch",
],
enabled: false,
},
{
packageNames: [
"org.scalameta:sbt-scalafmt",
],
automerge: false,
prBodyNotes: [
":warning: .scalafmt.conf must be updated manually",
],
},
],
}