diff options
author | Rémi Verschelde <rverschelde@gmail.com> | 2024-05-11 15:55:12 +0200 |
---|---|---|
committer | Rémi Verschelde <rverschelde@gmail.com> | 2024-05-11 15:55:23 +0200 |
commit | 734f820be48d6b5f0dbbdc30ca5a0e4225ab3d76 (patch) | |
tree | 5524c60d34859b268f927bc872a16507bbd0eb78 /.github | |
parent | 916ea002c15e82879f3eada7c635daaecccc9e35 (diff) | |
download | redot-engine-734f820be48d6b5f0dbbdc30ca5a0e4225ab3d76.tar.gz |
CI: Re-add `CHANGED_FILES` logic for pre-commit checks
Fixes #91831.
Diffstat (limited to '.github')
-rw-r--r-- | .github/workflows/static_checks.yml | 16 |
1 files changed, 15 insertions, 1 deletions
diff --git a/.github/workflows/static_checks.yml b/.github/workflows/static_checks.yml index 2506cb7227..0c2d7d2e62 100644 --- a/.github/workflows/static_checks.yml +++ b/.github/workflows/static_checks.yml @@ -26,6 +26,20 @@ jobs: pip3 install pytest==7.1.2 git config diff.wsErrorHighlight all + - name: Get changed files + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + run: | + if [ "${{ github.event_name }}" == "pull_request" ]; then + files=$(git diff-tree --no-commit-id --name-only -r HEAD^1..HEAD 2> /dev/null || true) + elif [ "${{ github.event_name }}" == "push" -a "${{ github.event.forced }}" == "false" -a "${{ github.event.created }}" == "false" ]; then + files=$(git diff-tree --no-commit-id --name-only -r ${{ github.event.before }}..${{ github.event.after }} 2> /dev/null || true) + fi + echo "$files" >> changed.txt + cat changed.txt + files=$(echo "$files" | grep -v 'thirdparty' | xargs -I {} sh -c 'echo "./{}"' | tr '\n' ' ') + echo "CHANGED_FILES=$files" >> $GITHUB_ENV + # This needs to happen before Python and npm execution; it must happen before any extra files are written. - name: .gitignore checks (gitignore_check.sh) run: | @@ -34,7 +48,7 @@ jobs: - name: Style checks via pre-commit uses: pre-commit/action@v3.0.1 with: - extra_args: --verbose + extra_args: --verbose --files ${{ env.CHANGED_FILES }} - name: Python builders checks via pytest run: | |