File tree Expand file tree Collapse file tree 3 files changed +15
-7
lines changed Expand file tree Collapse file tree 3 files changed +15
-7
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 : >
2018 --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
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+ cache = true
4+
5+ # excluding links to pull requests and issues is done for performance
6+ # stackexchange link fails with 403 when accessed by lychee
7+ exclude = [
8+ ' ^https://github.com/open-telemetry/opentelemetry-java-instrumentation/(issues|pull)/\\d+$' ,
9+ ' ^http://code.google.com/p/concurrentlinkedhashmap$' ,
10+ ' ^https://softwareengineering.stackexchange.com/questions/29727' ,
11+ ' ^https://central.sonatype.com/service/rest/repository/browse/maven-snapshots/io/opentelemetry/$' ,
12+ ]
13+
14+
You can’t perform that action at this time.
0 commit comments