File tree Expand file tree Collapse file tree 2 files changed +12
-3
lines changed
Expand file tree Collapse file tree 2 files changed +12
-3
lines changed Original file line number Diff line number Diff line change 2121 uses : lycheeverse/lychee-action@v2
2222 with :
2323 fail : false
24- # Exclude webpack-macros.html as it contains unprocessed Jinja2 template variables
25- # like {{ pathto() }} which cause false positives in link checking
26- args : --accept 403,503 --exclude-path "_static/webpack-macros.html" **/*.html
24+ # Configuration is now specified in lychee.toml file
25+ args : **/*.html
2726 - name : Create Issue From File
2827 if : steps.lychee.outputs.exit_code != 0
2928 uses : peter-evans/create-issue-from-file@v5
Original file line number Diff line number Diff line change 1+ # Lychee link checker configuration
2+ # For more configuration options, see: https://github.com/lycheeverse/lychee
3+
4+ # Accept specific HTTP status codes that are normally treated as errors
5+ accept = [403 , 503 ]
6+
7+ # Exclude paths from checking
8+ # This excludes the webpack-macros.html file which contains unprocessed Jinja2 template variables
9+ # like {{ pathto() }} that cause false positives in link checking
10+ exclude_path = [" _static/webpack-macros.html" ]
You can’t perform that action at this time.
0 commit comments