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 14
14
15
15
- uses : lycheeverse/lychee-action@82202e5e9c2f4ef1a55a3d02563e1cb6041e5332 # v2.4.1
16
16
with :
17
- # excluding links to pull requests and issues is done for performance
18
- # stackexchange link fails with 403 when accessed by lychee
19
17
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
26
19
--github-token ${{ github.token }}
27
20
.
Original file line number Diff line number Diff line change @@ -58,6 +58,7 @@ hs_err_pid*
58
58
replay_pid *
59
59
.attach_pid *
60
60
.telemetry *
61
+ .lycheecache
61
62
62
63
! java-agent /benchmark /releases /* .jar
63
64
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