Skip to content

Commit

Permalink
Add mergify
Browse files Browse the repository at this point in the history
Signed-off-by: Carlos Quiroz <[email protected]>
  • Loading branch information
cquiroz committed Mar 31, 2020
1 parent 80e800c commit 8541b2f
Show file tree
Hide file tree
Showing 2 changed files with 23 additions and 15 deletions.
10 changes: 10 additions & 0 deletions .mergify.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@

pull_request_rules:
- name: automatically merge scala-steward's PRs
conditions:
- author=scala-steward
- body~=labels:.*semver-patch.*
- status-success=build
actions:
merge:
method: merge
28 changes: 13 additions & 15 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -27,14 +27,12 @@ inThisBuild(
)
)


lazy val commonSettings = Seq(
name := "sbt-tzdb",
description := "Sbt plugin to build custom timezone databases",
name := "sbt-tzdb",
description := "Sbt plugin to build custom timezone databases",
organization := "io.github.cquiroz",
scalaVersion := scalaVer,

javaOptions ++= Seq("-Dfile.encoding=UTF8"),
scalaVersion := scalaVer,
javaOptions ++= Seq("-Dfile.encoding=UTF8")
)

lazy val sbt_tzdb = project
Expand All @@ -44,16 +42,16 @@ lazy val sbt_tzdb = project
.settings(
name := "sbt-tzdb",
libraryDependencies ++= Seq(
"io.github.cquiroz" %% "kuyfi" % "1.0.0",
"org.apache.commons" % "commons-compress" % "1.20",
"com.eed3si9n" %% "gigahorse-okhttp" % "0.5.0",
"com.github.pathikrit" %% "better-files" % "3.8.0",
"org.typelevel" %% "cats-core" % "2.1.1",
"org.typelevel" %% "cats-effect" % "2.1.2"
"io.github.cquiroz" %% "kuyfi" % "1.0.0+15-5982805f+20200324-1655-SNAPSHOT",
"org.apache.commons" % "commons-compress" % "1.20",
"com.eed3si9n" %% "gigahorse-okhttp" % "0.5.0",
"com.github.pathikrit" %% "better-files" % "3.8.0",
"org.typelevel" %% "cats-core" % "2.1.1",
"org.typelevel" %% "cats-effect" % "2.1.2"
),
scriptedLaunchOpts := { scriptedLaunchOpts.value ++
Seq("-Xmx1024M", "-Dplugin.version=" + version.value)
scriptedLaunchOpts := {
scriptedLaunchOpts.value ++
Seq("-Xmx1024M", "-Dplugin.version=" + version.value)
},
scriptedBufferLog := false
)

0 comments on commit 8541b2f

Please sign in to comment.