Skip to content

Commit

Permalink
Add scala steward config + pin Scala to 2.12
Browse files Browse the repository at this point in the history
  • Loading branch information
mkurz committed May 6, 2024
1 parent a97e806 commit 420eadc
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions .github/scala-steward.conf
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
pullRequests.frequency = "@monthly"

commits.message = "${artifactName} ${nextVersion} (was ${currentVersion})"

pullRequests.grouping = [
{ name = "patches", "title" = "Patch updates", "filter" = [{"version" = "patch"}] }
]

updates.pin = [
// sbt-eclipse is a sbt plugin and sbt plugins use Scala 2.12
{ groupId = "org.scala-lang", artifactId = "scala-compiler", version = "2.12." },
{ groupId = "org.scala-lang", artifactId = "scala-library", version = "2.12." },
{ groupId = "org.scala-lang", artifactId = "scala-reflect", version = "2.12." },
{ groupId = "org.scala-lang", artifactId = "scalap", version = "2.12." }
]

updatePullRequests = never

0 comments on commit 420eadc

Please sign in to comment.