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