From d04c83008b3fc91b85c6c8982923f26a7d9577f4 Mon Sep 17 00:00:00 2001 From: Alexander Yakovlev <33040934+AlexJameson@users.noreply.github.com> Date: Thu, 22 Aug 2024 02:53:28 +0300 Subject: [PATCH] fix --- .github/workflows/spellcheck-ru.yml | 12 ++---------- 1 file changed, 2 insertions(+), 10 deletions(-) diff --git a/.github/workflows/spellcheck-ru.yml b/.github/workflows/spellcheck-ru.yml index f27916ad3f6..50ba920c277 100644 --- a/.github/workflows/spellcheck-ru.yml +++ b/.github/workflows/spellcheck-ru.yml @@ -21,16 +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 "::set-output name=all_changed_files::${changed_files}" - - - name: Print PR outputs - run: | - echo "Changed: ${{ steps.changed-files.outputs.all_changed_files }}" - echo "Current working directory: $(pwd)" - - - name: Find file - run: | - find . -name sample.md + echo "::set-output name=all_changed_files::$changed_files" - name: Setup Node.js uses: actions/setup-node@v3 @@ -50,6 +41,7 @@ jobs: ALL_CHANGED_FILES: ${{ steps.changed-files.outputs.all_changed_files }} GITHUB_WORKSPACE: ${{ github.workspace }} run: | + echo "ALL_CHANGED_FILES: $ALL_CHANGED_FILES" cspell_output="" for file in ${{ steps.changed-files.outputs.all_changed_files }}; do echo "Running CSpell on $file..."