Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
AlexJameson committed Aug 22, 2024
1 parent d04c830 commit 007dae5
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .github/workflows/spellcheck-ru.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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}")
Expand Down

0 comments on commit 007dae5

Please sign in to comment.