-
Notifications
You must be signed in to change notification settings - Fork 1
/
.scala-steward.conf
32 lines (26 loc) · 1023 Bytes
/
.scala-steward.conf
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
updatePullRequests = "always"
commits.message = "Scala-Steward: Update ${artifactName} from ${currentVersion} to ${nextVersion}"
buildRoots = [
".",
"examples/pekko-cluster-app/",
"examples/pekko-persistence-app/",
"examples/event-migration/",
"sbt-pekko-serialization-helper/src/sbt-test/sbt-dumpschema/dependencies",
"sbt-pekko-serialization-helper/src/sbt-test/sbt-dumpschema/simple",
]
scalafmt.runAfterUpgrading = true
pullRequests {
frequency = "7 days"
grouping = [
{ name = "scalafmt_${hash}", title = "Update scalafmt", "filter" = [{"group" = "org.scalameta", "artifact" = "scalafmt-core"}] },
{ name = "all_${hash}", title = "Update deps", "filter" = [{"group" = "*"}] }
]
}
updates {
allowPreReleases = [ { groupId = "org.apache.pekko" } ]
allow = [ { groupId = "org.apache.pekko" } ]
ignore = [
{ groupId = "org.apache.pekko", artifactId = "pekko-grpc-runtime_2.13" }
{ groupId = "org.apache.pekko", version = { contains = "-M" } } # like, 1.1.0-M1
]
}