diff --git a/.github/workflows/close-issues-when-done.yml b/.github/workflows/close-issues-when-done.yml index 1cfe68b..5ba92c8 100644 --- a/.github/workflows/close-issues-when-done.yml +++ b/.github/workflows/close-issues-when-done.yml @@ -12,7 +12,7 @@ jobs: steps: - name: Check if in "done" column id: check-done-column - run: echo "::set-output name=isDone::${{ contains(github.event.project_card.column_name, 'done') }}" + run: echo "::set-output name=isDone::${{ contains(github.event.project_card.column_name, 'Done') }}" - name: Close Issue if: steps.check-done-column.outputs.isDone == 'true'