File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 3131 id : lychee
3232 uses : lycheeverse/lychee-action@v2
3333 with :
34- # Note: The `--format` option refers to the format of the report, not the documents being scanned.
34+ #
35+ # Notes:
36+ # - The `>` symbol tells the YAML parser to replace newlines with whitespace. This way, we don't
37+ # have to terminate each line with a `\` character to escape the invisible newline character.
38+ # - The `--format` option refers to the format of the report, not the documents being scanned.
39+ # - The `--exclude-loopback` option makes it so Lychee does not check "localhost" URLs.
40+ # - The `--exclude <PATTERN>` option can be used multiple times.
41+ #
3542 # Reference: https://github.com/lycheeverse/lychee#commandline-parameters
36- args : --base '_build/html' --verbose --no-progress --format markdown '_build/html/**/*.html'
43+ #
44+ args : >
45+ --base '_build/html'
46+ --exclude-loopback
47+ --exclude '^https://rancher2.spin.nersc.gov'
48+ --verbose
49+ --no-progress
50+ --format markdown
51+ '_build/html/**/*.html'
3752 debug : true
3853 output : ./lychee/out.md
3954 fail : false
You can’t perform that action at this time.
0 commit comments