From 398bb951b540c09e25fddead2c9d3da4619e1894 Mon Sep 17 00:00:00 2001 From: Connor James Smith Date: Fri, 15 Dec 2023 20:08:27 -0500 Subject: [PATCH] skip mima check till the release works - will back it up to "0.5" after --- .mergify.yml | 6 ++---- build.sbt | 6 ++---- 2 files changed, 4 insertions(+), 8 deletions(-) diff --git a/.mergify.yml b/.mergify.yml index d615951..d91d55a 100644 --- a/.mergify.yml +++ b/.mergify.yml @@ -8,10 +8,8 @@ pull_request_rules: - name: merge scala-steward's PRs conditions: - - author=dwolla-oss-scala-steward[bot] - - or: - - body~=labels:.*early-semver-patch - - body~=labels:.*early-semver-minor + - author=scala-steward + - body~=labels:.*early-semver-patch - status-success=Build and Test (ubuntu-latest, 3, temurin@17) - status-success=Build and Test (ubuntu-latest, 2.13, temurin@17) - status-success=Build and Test (ubuntu-latest, 2.12, temurin@17) diff --git a/build.sbt b/build.sbt index f793aec..7b45667 100644 --- a/build.sbt +++ b/build.sbt @@ -32,13 +32,11 @@ ThisBuild / tlJdkRelease := Option(8) ThisBuild / githubWorkflowJavaVersions := Seq(JavaSpec.temurin("17")) ThisBuild / githubWorkflowScalaVersions := Seq("3", "2.13", "2.12") ThisBuild / tlCiReleaseBranches := Seq("main") -ThisBuild / tlBaseVersion := "0.5.1" +ThisBuild / tlBaseVersion := "0.6" ThisBuild / tlSonatypeUseLegacyHost := false -ThisBuild / mergifyStewardConfig ~= { - _.map(_.copy(mergeMinors = true, author = "dwolla-oss-scala-steward[bot]")) -} lazy val `fs2-pgp-root` = (project in file(".")) .settings(publishArtifact := false) .enablePlugins(BouncyCastlePlugin) + .enablePlugins(TypelevelCiReleasePlugin) .aggregate(BouncyCastlePlugin.extraProjects.map(_.project)*)