-
Notifications
You must be signed in to change notification settings - Fork 83
/
.scala-steward.conf
22 lines (21 loc) · 1022 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
# PRs are created only again after 7 days since the last PR has passed
pullRequests.frequency = "7 days"
# Add custom labels to PRs to be used by the automated release process
pullRequests.customLabels = [ "dependency" ]
# group all patches, and typelevel updates
pullRequests.grouping = [
{ name = "patches", "title" = "Patch updates", "filter" = [{"version" = "patch"}] },
{ name = "typelevel", "title" = "Typelevel updates", "filter" = [{"group" = "org.typelevel"}, {"group" = "org.http4s"}, {"group" = "co.fs2"}] }
]
# pin updates to cats-effect 2.x compatible versions
updates.pin = [
{ groupId = "org.typelevel", artifactId = "cats-effect", version = "2." },
{ groupId = "co.fs2", version = "2." },
{ groupId = "org.http4s", version = "0.22." },
{ groupId = "com.github.fd4s", artifactId = "fs2-kafka", version = "1."},
{ groupId = "com.github.cb372", artifactId = "cats-retry", version = "2."}
]
# ignore kotlin compiler version updates
updates.ignore = [
{ groupId = "org.jetbrains.kotlin" }
]