From 68acee66d0cb4af3af5d3000a5ecbabfa8872a34 Mon Sep 17 00:00:00 2001 From: Alexander Yakovlev <33040934+AlexJameson@users.noreply.github.com> Date: Thu, 22 Aug 2024 02:17:51 +0300 Subject: [PATCH] debug --- .github/workflows/spellcheck-ru.yml | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/.github/workflows/spellcheck-ru.yml b/.github/workflows/spellcheck-ru.yml index fb7d2ac32a4..62615c3e2c3 100644 --- a/.github/workflows/spellcheck-ru.yml +++ b/.github/workflows/spellcheck-ru.yml @@ -21,15 +21,11 @@ jobs: id: changed-files uses: tj-actions/changed-files@v44 with: - base_sha: ${{ steps.get-pr.outputs.base_sha }} - sha: ${{ steps.get-pr.outputs.head_sha }} + 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 "Base SHA: ${{ steps.get-pr.outputs.base_sha }}" - echo "Head SHA: ${{ steps.get-pr.outputs.head_sha }}" - echo "Base ref: ${{ steps.get-pr.outputs.base_ref }}" - echo "Head ref: ${{ steps.get-pr.outputs.head_ref }}" echo "Changed: ${{ steps.changed-files.outputs.all_changed_files }}" echo "Current working directory: $(pwd)"