Skip to content

Commit

Permalink
Debugging
Browse files Browse the repository at this point in the history
  • Loading branch information
EZoni committed Nov 18, 2024
1 parent cb4037a commit bc42099
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions .github/workflows/check_diff.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,12 +38,14 @@ jobs:
HEAD_REF: ${{ github.event.pull_request.head.ref }}
run: |
git diff --name-only --diff-filter=ACMRTUXB origin/${BASE_REF}..fork/${HEAD_REF} > check_diff.txt
cat check_diff.txt
- name: Check files changed
run: |
if grep -v -E "^(docs|\.github)/|\.azure-pipelines\.yml$" check_diff.txt; then
echo "skip=false" >> ${GITHUB_OUTPUT}
else
echo "skip=true" >> ${GITHUB_OUTPUT}
fi
echo ${GITHUB_OUTPUT}
outputs:
skip: ${{ steps.check.outputs.skip }}

0 comments on commit bc42099

Please sign in to comment.