Skip to content

Commit 6bea1bf

Browse files
committed
try
1 parent b0a6d0c commit 6bea1bf

File tree

1 file changed

+16
-2
lines changed

1 file changed

+16
-2
lines changed

.github/workflows/reusable-markdown-link-check.yml

Lines changed: 16 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,20 @@ jobs:
99
steps:
1010
- uses: actions/checkout@v4
1111

12-
- name: Link Checker
13-
id: lychee
12+
# need to rate limit requests to github.com in order to avoid 429s
13+
- name: Check GitHub links
1414
uses: lycheeverse/lychee-action@v2
15+
with:
16+
args: >
17+
--include-fragments
18+
--include github.com
19+
--max-concurrency 2
20+
.
21+
22+
- name: Check other links
23+
uses: lycheeverse/lychee-action@v2
24+
with:
25+
args: >
26+
--include-fragments
27+
--exclude github.com
28+
.

0 commit comments

Comments
 (0)