File tree Expand file tree Collapse file tree 2 files changed +12
-1
lines changed Expand file tree Collapse file tree 2 files changed +12
-1
lines changed Original file line number Diff line number Diff line change 21
21
uses : lycheeverse/lychee-action@v2
22
22
with :
23
23
fail : false
24
- args : --accept 403,503 **/*.html
24
+ # Configuration is now specified in lychee.toml file
25
+ args : **/*.html
25
26
- name : Create Issue From File
26
27
if : steps.lychee.outputs.exit_code != 0
27
28
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