Skip to content
This repository has been archived by the owner on May 9, 2023. It is now read-only.

Commit

Permalink
Fix release process (#125)
Browse files Browse the repository at this point in the history
* Fix release process

* Update logback-classic

* Add scala-steward config
  • Loading branch information
guizmaii committed Jan 17, 2023
1 parent 51efb25 commit a4acd55
Show file tree
Hide file tree
Showing 4 changed files with 33 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ on:
types: [ published ]

jobs:
test:
tests:
runs-on: ubuntu-latest
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
Expand Down
27 changes: 27 additions & 0 deletions .github/workflows/scala-steward.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
name: Launch Scala Steward

# This workflow will launch everyday at 00:00
on:
schedule:
- cron: '0 0 * * 1-5'
workflow_dispatch: {}

jobs:
scala-steward:
timeout-minutes: 45
runs-on: ubuntu-latest
env:
GH_READ_PACKAGES: ${{ secrets.GH_READ_PACKAGES }}
name: Launch Scala Steward
steps:
- name: Launch Scala Steward
uses: scala-steward-org/[email protected]
with:
github-token: ${{ secrets.SCALA_STEWARD }}
- name: Checkout
uses: actions/[email protected]
- name: Auto approve scala steward PR
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: |
./.github/scripts/scalaStewardAutoApprove.sh
2 changes: 1 addition & 1 deletion build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ lazy val zioTest = "dev.zio" %% "zio-test"
lazy val zioTestSbt = "dev.zio" %% "zio-test-sbt" % zioVersion
lazy val scalaCollectionCompat = "org.scala-lang.modules" %% "scala-collection-compat" % "2.9.0"
lazy val jacksonDatabind = "com.fasterxml.jackson.core" % "jackson-databind" % "2.14.1"
lazy val logback = "ch.qos.logback" % "logback-classic" % "1.4.4"
lazy val logback = "ch.qos.logback" % "logback-classic" % "1.4.5"
lazy val embeddedKafka = "io.github.embeddedkafka" %% "embedded-kafka" % embeddedKafkaVersion

val GITHUB_OWNER = "conduktor"
Expand Down
8 changes: 4 additions & 4 deletions project/plugins.sbt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
addSbtPlugin("org.scalameta" % "sbt-scalafmt" % "2.5.0")
addSbtPlugin("io.github.davidgregory084" % "sbt-tpolecat" % "0.4.2")
addSbtPlugin("com.eed3si9n" % "sbt-buildinfo" % "0.11.0")
addSbtPlugin("org.scalameta" % "sbt-mdoc" % "2.3.6")
addSbtPlugin("org.scalameta" % "sbt-scalafmt" % "2.5.0")
addSbtPlugin("io.github.davidgregory084" % "sbt-tpolecat" % "0.4.2")
addSbtPlugin("com.eed3si9n" % "sbt-buildinfo" % "0.11.0")
addSbtPlugin("org.scalameta" % "sbt-mdoc" % "2.3.6")

0 comments on commit a4acd55

Please sign in to comment.