From 747415dbb12ee2fce1ed366e3635083c529774a1 Mon Sep 17 00:00:00 2001 From: Alexander Andreev Date: Thu, 26 Sep 2024 09:50:27 -0700 Subject: [PATCH] Change quotes in condition --- .github/workflows/pr-checklist.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pr-checklist.yml b/.github/workflows/pr-checklist.yml index d0a719d1e8..2cb1e94dd1 100644 --- a/.github/workflows/pr-checklist.yml +++ b/.github/workflows/pr-checklist.yml @@ -45,7 +45,7 @@ jobs: UNCHECKED=$(echo "$DESCRIPTION" | grep -c '\[ \]') echo "unchecked=$UNCHECKED" >> $GITHUB_OUTPUT - name: Fail if not all checkboxes are checked and PR is not draft - if: ${{ (steps.pr.outputs.draft == "false") && (steps.checkboxes.outputs.unchecked != '0') }} + if: ${{ (steps.pr.outputs.draft == 'false') && (steps.checkboxes.outputs.unchecked != '0') }} run: | echo "Unchecked checkboxes: ${{ steps.checkboxes.outputs.unchecked }}" exit 1