File tree Expand file tree Collapse file tree 3 files changed +21
-8
lines changed Expand file tree Collapse file tree 3 files changed +21
-8
lines changed Original file line number Diff line number Diff line change 1414
1515 - uses : lycheeverse/lychee-action@82202e5e9c2f4ef1a55a3d02563e1cb6041e5332 # v2.4.1
1616 with :
17- # excluding links to pull requests and issues is done for performance
18- # stackexchange link fails with 403 when accessed by lychee
1917 args : >
20- --include-fragments
21- --exclude "^https://github.com/open-telemetry/opentelemetry-java-instrumentation/(issues|pull)/\\d+$"
22- --exclude "^http://code.google.com/p/concurrentlinkedhashmap$"
23- --exclude "^https://softwareengineering.stackexchange.com/questions/29727"
24- --max-retries 6
25- --max-concurrency 4
18+ --config ./lychee.toml
2619 --github-token ${{ github.token }}
2720 .
Original file line number Diff line number Diff line change @@ -58,6 +58,7 @@ hs_err_pid*
5858replay_pid *
5959.attach_pid *
6060.telemetry *
61+ .lycheecache
6162
6263! java-agent /benchmark /releases /* .jar
6364
Original file line number Diff line number Diff line change 1+ max_retries = 6
2+ max_concurrency = 4
3+
4+ # Stealth
5+ user_agent = " Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:128.0) Gecko/20100101 Firefox/128.0"
6+
7+ # Check fragments in links
8+ include_fragments = true
9+
10+ # excluding links to pull requests and issues is done for performance
11+ # stackexchange link fails with 403 when accessed by lychee
12+ exclude = [
13+ ' ^https://github.com/open-telemetry/opentelemetry-java-instrumentation/(issues|pull)/\d+$' ,
14+ ' ^http://code.google.com/p/concurrentlinkedhashmap$' ,
15+ ' ^https://softwareengineering.stackexchange.com/questions/29727.*' ,
16+ ' ^https://central.sonatype.com/service/rest/repository/browse/maven-snapshots/io/opentelemetry/$' ,
17+ ]
18+
19+
You can’t perform that action at this time.
0 commit comments