Skip to content

Commit

Permalink
Merge pull request #132 from mkurz/scala-steward_pins
Browse files Browse the repository at this point in the history
Add scala steward config + pin Scala to 2.12
  • Loading branch information
mkurz committed May 10, 2024
2 parents b8b9f82 + 7919783 commit c32657c
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-js-engine 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 c32657c

Please sign in to comment.