Skip to content

Commit 06957a2

Browse files
committed
try
1 parent b0a6d0c commit 06957a2

File tree

3 files changed

+32
-15
lines changed

3 files changed

+32
-15
lines changed

.github/workflows/build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@ jobs:
102102
path: jmx-metrics/build/reports/tests/integrationTest
103103

104104
markdown-link-check:
105-
uses: ./.github/workflows/reusable-markdown-link-check.yml
105+
uses: ./.github/workflows/reusable-check-links.yml
106106

107107
markdown-lint-check:
108108
uses: ./.github/workflows/reusable-markdown-lint.yml
Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
name: Reusable - Check links
2+
3+
on:
4+
workflow_call:
5+
6+
jobs:
7+
check-links-github:
8+
runs-on: ubuntu-latest
9+
steps:
10+
- uses: actions/checkout@v4
11+
12+
# need to rate limit requests to github.com in order to avoid 429s
13+
- uses: lycheeverse/lychee-action@v2
14+
with:
15+
args: >
16+
--include-fragments
17+
--include github.com
18+
--max-concurrency 2
19+
.
20+
21+
check-links-other:
22+
runs-on: ubuntu-latest
23+
steps:
24+
- uses: actions/checkout@v4
25+
26+
- uses: lycheeverse/lychee-action@v2
27+
with:
28+
args: >
29+
--include-fragments
30+
--exclude github.com
31+
.

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

Lines changed: 0 additions & 14 deletions
This file was deleted.

0 commit comments

Comments
 (0)