forked from akka/akka-http
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path.scala-steward.conf
25 lines (22 loc) · 1.21 KB
/
.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
# Only send PRs on Monday morning
pullRequests.frequency = "0 0 ? * 1"
commits.message = "build: update ${artifactName} from ${currentVersion} to ${nextVersion}"
updates.ignore = [
{ groupId = "com.typesafe.akka", artifactId = "akka-actor" },
{ groupId = "com.typesafe.akka", artifactId = "akka-actor-typed" },
{ groupId = "com.typesafe.akka", artifactId = "akka-stream" },
{ groupId = "com.typesafe.akka", artifactId = "akka-testkit" },
{ groupId = "com.typesafe.akka", artifactId = "akka-actor-testkit-typed" },
{ groupId = "com.typesafe.akka", artifactId = "akka-stream-testkit" },
{ groupId = "com.typesafe.akka", artifactId = "akka-multi-node-testkit" },
{ groupId = "com.typesafe.akka", artifactId = "akka-http" },
]
updates.pin = [
# Stay on ScalaTest 3.1 as long as Akka TestKit does
{ groupId = "org.scalatest", artifactId = "scalatest", version = "3.1." },
# https://github.com/akka/akka/pull/28970 / https://github.com/akka/akka/issues/29072
{ groupId = "com.fasterxml.jackson.core", version = "2.10." },
{ groupId = "com.fasterxml.jackson.dataformat", version = "2.10." },
# https://github.com/akka/akka-http/issues/3719
{ groupId = "org.scala-sbt", artifactId = "sbt", version = "1.3." },
]