Skip to content

Commit

Permalink
update filtering
Browse files Browse the repository at this point in the history
  • Loading branch information
carusooo committed Aug 23, 2024
1 parent f2b60f0 commit 600f89e
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion .github/workflows/pr-check.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,14 @@ jobs:
with:
# Avoid using single or double quotes for multiline patterns
files: |
**.md*
**.mdx
- name: List all changed files
env:
ALL_CHANGED_FILES: ${{ steps.changed_files.outputs.all_changed_files }}
run: |
for file in ${ALL_CHANGED_FILES}; do
echo "$file was changed"
done
- uses: rojopolis/[email protected]
name: Spellcheck
if: ${{ steps.changed_files.outputs.all_changed_files }}
Expand Down

0 comments on commit 600f89e

Please sign in to comment.