Skip to content

Commit f950feb

Browse files
Update auto_review_documentation.yml
1 parent b57621c commit f950feb

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

.github/workflows/auto_review_documentation.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,9 @@ jobs:
4141
- name: Get changed files
4242
id: changed-docs
4343
run: |
44-
git diff --name-only ${{ github.event.before }} ${{ github.sha }} > changed_files.txt
44+
git diff --name-only ${{ github.event.before }} ${{ github.sha }} > changed_files.txt
45+
echo "Changed files:"
46+
cat changed_files.txt || echo "None"
4547
if grep -E "${DOC_FILE_FILTER}" changed_files.txt > changed_docs.txt; then
4648
echo "Filtered doc files found."
4749
else

0 commit comments

Comments
 (0)