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 b57621c commit f950febCopy full SHA for f950feb
.github/workflows/auto_review_documentation.yml
@@ -41,7 +41,9 @@ jobs:
41
- name: Get changed files
42
id: changed-docs
43
run: |
44
- git diff --name-only ${{ github.event.before }} ${{ github.sha }} > changed_files.txt
+ git diff --name-only ${{ github.event.before }} ${{ github.sha }} > changed_files.txt
45
+ echo "Changed files:"
46
+ cat changed_files.txt || echo "None"
47
if grep -E "${DOC_FILE_FILTER}" changed_files.txt > changed_docs.txt; then
48
echo "Filtered doc files found."
49
else
0 commit comments