From e719c5394499fc1232687c29e7eceed5b61aea0b Mon Sep 17 00:00:00 2001 From: Jeppe Reinhold Date: Mon, 25 Sep 2023 07:15:33 -0500 Subject: [PATCH] try number when reading pr-count --- .github/workflows/prepare-patch-release.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/prepare-patch-release.yml b/.github/workflows/prepare-patch-release.yml index 43636b8294a9..7fd805c34a63 100644 --- a/.github/workflows/prepare-patch-release.yml +++ b/.github/workflows/prepare-patch-release.yml @@ -89,7 +89,7 @@ jobs: yarn release:pick-patches - name: Cancel when no hotfixes to pick - if: steps.pick-patches.outputs.pr-count == '0' + if: steps.pick-patches.outputs.pr-count == 0 env: GH_TOKEN: ${{ secrets.GITHUB_TOKEN }} # From https://stackoverflow.com/a/75809743