Skip to content

Commit c0c6aa7

Browse files
committed
1 parent 7cef531 commit c0c6aa7

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

.github/workflows/DINAR-pr.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,10 @@ jobs:
9494
run: |
9595
cd REPO
9696
git fetch origin ${{ github.event.pull_request.base.ref }}
97-
pre-commit run --show-diff-on-failure --color=always --show-diff-on-failure --files $(git diff --name-only --no-ext-diff -z ${{ github.event.pull_request.base.ref }}..HEAD)
97+
echo "CHANGED FILES:"
98+
git diff --name-only --no-ext-diff FETCH_HEAD..HEAD -- .
99+
echo "RUN PRE-COMMIT:"
100+
pre-commit run --show-diff-on-failure --color=always --show-diff-on-failure --files $(git diff --name-only --no-ext-diff -z FETCH_HEAD..HEAD -- .)
98101
99102
tests:
100103
name: "Quick Tests"

0 commit comments

Comments
 (0)