We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7cef531 commit c0c6aa7Copy full SHA for c0c6aa7
.github/workflows/DINAR-pr.yml
@@ -94,7 +94,10 @@ jobs:
94
run: |
95
cd REPO
96
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)
+ 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 -- .)
101
102
tests:
103
name: "Quick Tests"
0 commit comments