From 007dae536bc6f7a243adbb1aa9149d793d679977 Mon Sep 17 00:00:00 2001 From: Alexander Yakovlev <33040934+AlexJameson@users.noreply.github.com> Date: Thu, 22 Aug 2024 03:01:20 +0300 Subject: [PATCH] fix --- .github/workflows/spellcheck-ru.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/spellcheck-ru.yml b/.github/workflows/spellcheck-ru.yml index 50ba920c277..60c88212670 100644 --- a/.github/workflows/spellcheck-ru.yml +++ b/.github/workflows/spellcheck-ru.yml @@ -21,6 +21,7 @@ jobs: id: changed-files run: | changed_files=$(git diff --name-only ${{ steps.get-pr.outputs.base_sha }}..${{ steps.get-pr.outputs.head_sha }}) + echo "Changed files: $changed_files" echo "::set-output name=all_changed_files::$changed_files" - name: Setup Node.js @@ -43,7 +44,7 @@ jobs: run: | echo "ALL_CHANGED_FILES: $ALL_CHANGED_FILES" cspell_output="" - for file in ${{ steps.changed-files.outputs.all_changed_files }}; do + for file in $ALL_CHANGED_FILES; do echo "Running CSpell on $file..." file_path="${GITHUB_WORKSPACE}/${file}" file_content=$(cat "${file_path}")