From e65c5f879bcfe9a082f29b0b8e244d8cd056860e Mon Sep 17 00:00:00 2001 From: Pascal Zimmermann Date: Mon, 20 Jul 2026 23:18:09 +0200 Subject: [PATCH] feat: Adjust the check action --- .github/workflows/pull-request-checks.yml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/pull-request-checks.yml b/.github/workflows/pull-request-checks.yml index 8e001fc..df0bc05 100644 --- a/.github/workflows/pull-request-checks.yml +++ b/.github/workflows/pull-request-checks.yml @@ -91,11 +91,11 @@ jobs: run: coverage-badge -f -o docs/coverage.svg - name: Check changed files - uses: tj-actions/verify-changed-files@v20 id: verify-changed-files + uses: ZPascal/check-changed-files-action@v1 with: - files: | - docs + checked_location: 'docs' + git_location: './' - name: Commit files if: steps.verify-changed-files.outputs.files_changed == 'true' @@ -139,11 +139,11 @@ jobs: run: pydoc-markdown --render-toc && rm -rf docs/content && mv build/docs/* docs - name: Check changed files - uses: tj-actions/verify-changed-files@v20 id: verify-changed-files + uses: ZPascal/check-changed-files-action@v1 with: - files: | - docs + checked_location: 'docs' + git_location: './' - name: Commit files if: steps.verify-changed-files.outputs.files_changed == 'true'