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 fc63fcc commit da9941eCopy full SHA for da9941e
.github/workflows/auto_review_documentation.yml
@@ -19,7 +19,7 @@ jobs:
19
AZURE_OPENAI_API_VERSION: "2024-12-01-preview"
20
GITHUB_TOKEN: ${{ secrets.TOKEN_GITHUB }}
21
REPO_NAME: "Azure-Samples/azure-ai-content-understanding-python"
22
- DOC_FILE_FILTER: '(?i)\.md$|README|\.ipynb$'
+ DOC_FILE_FILTER: '\.md$|README|\.ipynb$'
23
BRANCH_NAME: chienyuanchang/fix_auto_check_documentation
24
25
steps:
@@ -42,7 +42,7 @@ jobs:
42
id: changed-docs
43
run: |
44
git diff --name-only ${{ github.event.before }} ${{ github.sha }} > changed_files.txt
45
- if grep -E "${DOC_FILE_FILTER}" changed_files.txt > changed_docs.txt; then
+ if grep -i -E "${DOC_FILE_FILTER}" changed_files.txt > changed_docs.txt; then # -i to ignore case
46
echo "Filtered doc files found."
47
else
48
> changed_docs.txt
0 commit comments