From 5b86d1263a3804644aad0a47773c400f20695671 Mon Sep 17 00:00:00 2001 From: "Yang, Bo" Date: Thu, 26 Jan 2023 14:10:36 -0800 Subject: [PATCH 1/5] ci(scala-steward): Allow for workflow_dispatch event --- .github/workflows/scala-steward.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/scala-steward.yml b/.github/workflows/scala-steward.yml index 449cd0e..f04f703 100644 --- a/.github/workflows/scala-steward.yml +++ b/.github/workflows/scala-steward.yml @@ -4,6 +4,7 @@ on: - 'update/**' schedule: - cron: '0 0 * * 0' + workflow_dispatch: name: Launch Scala Steward From f217fc94329ec64602c9024dbf5df94ee673e9f4 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Thu, 26 Jan 2023 14:14:39 -0800 Subject: [PATCH 2/5] Update sbt-best-practice to 8.2.5 in template (#35) Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> --- project/plugins.sbt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/project/plugins.sbt b/project/plugins.sbt index 96ffca3..13f6c8a 100644 --- a/project/plugins.sbt +++ b/project/plugins.sbt @@ -1,5 +1,5 @@ addSbtPlugin( - "com.thoughtworks.sbt-best-practice" % "sbt-best-practice" % "8.2.4" + "com.thoughtworks.sbt-best-practice" % "sbt-best-practice" % "8.2.5" ) addSbtPlugin("org.xerial.sbt" % "sbt-sonatype" % "3.9.15") From 14fb06342cd5c000ee1210167561793b4dc49513 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Thu, 26 Jan 2023 14:14:47 -0800 Subject: [PATCH 3/5] Update scalafmt-core to 3.7.1 in template (#36) Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> --- .scalafmt.conf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.scalafmt.conf b/.scalafmt.conf index 094ff9b..d4dfbab 100644 --- a/.scalafmt.conf +++ b/.scalafmt.conf @@ -1,3 +1,3 @@ runner.dialect = scala212source3 -version = "3.6.1" +version = "3.7.1" maxColumn = 80 From d80d76a87c24a7fe23c2ec95979861648ac1b758 Mon Sep 17 00:00:00 2001 From: "Yang, Bo" Date: Thu, 26 Jan 2023 17:11:55 -0800 Subject: [PATCH 4/5] scala.yml should be triggered when pushing a release tag --- .github/workflows/scala.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/scala.yml b/.github/workflows/scala.yml index bd9b0f8..6b004dd 100644 --- a/.github/workflows/scala.yml +++ b/.github/workflows/scala.yml @@ -4,6 +4,9 @@ on: push: branches-ignore: - 'update/**' + tags: + - 'v*' + pull_request: jobs: From 43ef7e9862fec1d811a1d3337ebbfab2edb09ad0 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Thu, 26 Jan 2023 18:13:59 -0800 Subject: [PATCH 5/5] Update sbt-sonatype to 3.9.16 in template (#37) Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> --- project/plugins.sbt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/project/plugins.sbt b/project/plugins.sbt index 13f6c8a..31256db 100644 --- a/project/plugins.sbt +++ b/project/plugins.sbt @@ -2,7 +2,7 @@ addSbtPlugin( "com.thoughtworks.sbt-best-practice" % "sbt-best-practice" % "8.2.5" ) -addSbtPlugin("org.xerial.sbt" % "sbt-sonatype" % "3.9.15") +addSbtPlugin("org.xerial.sbt" % "sbt-sonatype" % "3.9.16") addSbtPlugin("com.dwijnand" % "sbt-dynver" % "4.1.1")