diff --git a/.github/workflows/community.yml b/.github/workflows/community.yml deleted file mode 100644 index 18b1ad7..0000000 --- a/.github/workflows/community.yml +++ /dev/null @@ -1,18 +0,0 @@ -name: Community -on: - issues: - types: [opened, edited, milestoned] - pull_request_target: - types: [opened] - -jobs: - - labeler: - runs-on: ubuntu-latest - - steps: - - name: Check Labels - id: labeler - uses: jimschubert/labeler-action@v1 - with: - GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}} diff --git a/README.md b/README.md index 7dc2ccc..17f5343 100644 --- a/README.md +++ b/README.md @@ -7,7 +7,7 @@ A Sbt plugin to support the OpenAPI generator project. Add to your `project/plugins.sbt`: ```sbt -addSbtPlugin("org.openapitools" % "sbt-openapi-generator" % "7.22.0") +addSbtPlugin("org.openapitools" % "sbt-openapi-generator" % "7.23.0") ``` # Configuration diff --git a/build.sbt b/build.sbt index fe437b2..7ef33ca 100644 --- a/build.sbt +++ b/build.sbt @@ -67,6 +67,6 @@ lazy val `sbt-openapi-generator` = (project in file(".")) Resolver.sbtPluginRepo("snapshots") ), - libraryDependencies += "org.openapitools" % "openapi-generator" % "7.22.0" + libraryDependencies += "org.openapitools" % "openapi-generator" % "7.23.0" ) .enablePlugins(SbtPlugin)