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 6b5cb9c commit 1921c62
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .github/workflows/docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,8 @@ 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 $(find . -name "*.md" -not \( -path ./deploy/terraform/aws/README.md -prune \)); do
# for file in $(find . -name "*.md" -not \( -path ./deploy/terraform/aws/README.md -prune \)); do
for file in $(locate "./*.md" -i ./deploy/terraform/aws/README.md -prune); do
markdown-link-check -c .dlc.json -q "$file"
done
paths-filter:
Expand Down

0 comments on commit 1921c62

Please sign in to comment.