Skip to content

Commit

Permalink
fix docs check timeout issue
Browse files Browse the repository at this point in the history
  • Loading branch information
SbloodyS committed Mar 4, 2024
1 parent d2730d8 commit 8c6e53d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ jobs:
# NOTE: Change command from `find . -name "*.md"` to `find . -not -path "*/node_modules/*" -not -path "*/.tox/*" -name "*.md"`
# if you want to run check locally
- run: |
for file in $(locate "./*.md" -i ./deploy/terraform/aws/README.md); do
for file in $(locate "*.md" | grep -v ./deploy/terraform/aws/README.md); do
markdown-link-check -c .dlc.json -q "$file"
done
paths-filter:
Expand Down

0 comments on commit 8c6e53d

Please sign in to comment.