Skip to content

Commit

Permalink
do not stringify booleans
Browse files Browse the repository at this point in the history
  • Loading branch information
ThijsBroersen committed Nov 17, 2024
1 parent 9c8ef58 commit 10af6e6
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 9 deletions.
14 changes: 7 additions & 7 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ jobs:
with:
distribution: corretto
java-version: '17'
check-latest: 'true'
check-latest: true
- name: Cache Dependencies
uses: coursier/cache-action@v6
- name: Check all code compiles
Expand All @@ -60,7 +60,7 @@ jobs:
with:
distribution: corretto
java-version: '17'
check-latest: 'true'
check-latest: true
- name: Cache Dependencies
uses: coursier/cache-action@v6
- name: Check if the site workflow is up to date
Expand All @@ -86,7 +86,7 @@ jobs:
with:
distribution: corretto
java-version: ${{ matrix.java }}
check-latest: 'true'
check-latest: true
- name: Cache Dependencies
uses: coursier/cache-action@v6
- name: Git Checkout
Expand All @@ -112,7 +112,7 @@ jobs:
with:
distribution: corretto
java-version: '17'
check-latest: 'true'
check-latest: true
- name: Cache Dependencies
uses: coursier/cache-action@v6
- name: Generate Readme
Expand Down Expand Up @@ -142,7 +142,7 @@ jobs:
branch: zio-sbt-website/update-readme
commit-message: Update README.md
token: ${{ steps.generate-token.outputs.token }}
delete-branch: 'true'
delete-branch: true
title: Update README.md
- name: Approve PR
if: ${{ steps.cpr.outputs.pull-request-number }}
Expand Down Expand Up @@ -186,7 +186,7 @@ jobs:
with:
distribution: corretto
java-version: '17'
check-latest: 'true'
check-latest: true
- name: Cache Dependencies
uses: coursier/cache-action@v6
- name: Release
Expand Down Expand Up @@ -217,7 +217,7 @@ jobs:
with:
distribution: corretto
java-version: '17'
check-latest: 'true'
check-latest: true
- name: Cache Dependencies
uses: coursier/cache-action@v6
- name: Setup NodeJs
Expand Down
4 changes: 2 additions & 2 deletions zio-sbt-ci/src/main/scala/zio/sbt/ZioSbtCiPlugin.scala
Original file line number Diff line number Diff line change
Expand Up @@ -453,7 +453,7 @@ object ZioSbtCiPlugin extends AutoPlugin {
"title" -> "Update README.md".toJsonAST.right.get,
"commit-message" -> "Update README.md".toJsonAST.right.get,
"branch" -> "zio-sbt-website/update-readme".toJsonAST.right.get,
"delete-branch" -> "true".toJsonAST.right.get,
"delete-branch" -> true.toJsonAST.right.get,
"body" ->
"""|Autogenerated changes after running the `sbt docs/generateReadme` command of the [zio-sbt-website](https://zio.dev/zio-sbt) plugin.
|
Expand Down Expand Up @@ -755,7 +755,7 @@ object ZioSbtCiPlugin extends AutoPlugin {
Map(
"distribution" -> distribution.toJsonAST.right.get,
"java-version" -> version.toJsonAST.right.get,
"check-latest" -> "true".toJsonAST.right.get
"check-latest" -> true.toJsonAST.right.get
)
)
)
Expand Down

0 comments on commit 10af6e6

Please sign in to comment.