We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 17cef03 commit 96acc72Copy full SHA for 96acc72
1 file changed
.github/workflows/test-pr.yml
@@ -19,6 +19,14 @@ jobs:
19
with:
20
files: 'docs/**.{md,mdx}'
21
22
+ - name: List all changed files
23
+ env:
24
+ ALL_CHANGED_FILES: ${{ steps.changed-markdown-files.outputs.all_changed_files }}
25
+ run: |
26
+ for file in ${ALL_CHANGED_FILES}; do
27
+ echo "$file was changed"
28
+ done
29
+
30
test:
31
runs-on: ubuntu-latest
32
needs: getChangedFiles
0 commit comments