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'