Skip to content

Commit b35d587

Browse files
authored
Merge pull request #1591 from tier4/avoid-link-check-errors
Avoid link check error
2 parents 8f2c212 + 51aeaef commit b35d587

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

.github/workflows/DocumentationLinkCheck.yaml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,8 @@ on:
66
schedule:
77
- cron: 0 0 * * *
88
pull_request:
9-
9+
paths:
10+
- "**/*.md"
1011
jobs:
1112
linkChecker:
1213
runs-on: ubuntu-latest
@@ -18,6 +19,6 @@ jobs:
1819
uses: lycheeverse/[email protected]
1920
with:
2021
fail: true
21-
args: "--verbose --no-progress './**/*.md' './**/*.html' --timeout 1000 --max-concurrency 32 -T 1 --retry-wait-time 10"
22+
args: "--verbose --no-progress './**/*.md' './**/*.html' --timeout 1000 --max-concurrency 1 -T 1 --retry-wait-time 10"
2223
env:
2324
GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}}

0 commit comments

Comments
 (0)