File tree Expand file tree Collapse file tree 4 files changed +36
-41
lines changed Expand file tree Collapse file tree 4 files changed +36
-41
lines changed Load Diff This file was deleted.
Original file line number Diff line number Diff line change @@ -101,8 +101,8 @@ jobs:
101101 name : integration-test-results
102102 path : jmx-metrics/build/reports/tests/integrationTest
103103
104- markdown- link-check :
105- uses : ./.github/workflows/reusable-markdown- link-check.yml
104+ link-check :
105+ uses : ./.github/workflows/reusable-link-check.yml
106106
107107 markdown-lint-check :
108108 uses : ./.github/workflows/reusable-markdown-lint.yml
@@ -125,7 +125,7 @@ jobs:
125125 # and so would not short-circuit if used in the second-last position
126126 name : publish-snapshots${{ (github.ref_name != 'main' || github.repository != 'open-telemetry/opentelemetry-java-contrib') && ' (skipped)' || '' }}
127127 needs :
128- # intentionally not blocking snapshot publishing on markdown- link-check or misspell-check
128+ # intentionally not blocking snapshot publishing on link-check or misspell-check
129129 - build
130130 - integration-test
131131 runs-on : ubuntu-latest
Original file line number Diff line number Diff line change 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+ --exclude-path CHANGELOG.md
18+ --include github.com
19+ --max-concurrency 2
20+ .
21+
22+ check-links-other :
23+ runs-on : ubuntu-latest
24+ steps :
25+ - uses : actions/checkout@v4
26+
27+ - uses : lycheeverse/lychee-action@v2
28+ with :
29+ args : >
30+ --include-fragments
31+ --exclude-path CHANGELOG.md
32+ --exclude github.com
33+ .
Load Diff This file was deleted.
You can’t perform that action at this time.
0 commit comments