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 731860f commit 7cbae49Copy full SHA for 7cbae49
.github/workflows/auto_review_documentation.yml
@@ -40,7 +40,9 @@ jobs:
40
- name: Get changed files
41
id: changed-docs
42
run: |
43
+ # Retrieve list of files changed between the previous commit and the current SHA
44
git diff --name-only ${{ github.event.before }} ${{ github.sha }} > changed_files.txt
45
+ # filter to include only documentation files
46
grep -i -E "${DOC_FILE_FILTER}" changed_files.txt > changed_docs.txt || > changed_docs.txt # -i ignore case
47
48
echo "Files changed with DOC_FILE_FILTER (${DOC_FILE_FILTER}) — could be empty:"
0 commit comments