File tree Expand file tree Collapse file tree 1 file changed +7
-10
lines changed Expand file tree Collapse file tree 1 file changed +7
-10
lines changed Original file line number Diff line number Diff line change @@ -16,21 +16,18 @@ jobs:
16
16
steps :
17
17
- uses : actions/checkout@v2
18
18
19
- - name : Load Excludes
20
- run : |
21
- LYCHEE_EXCLUDE=$(sed -e :a -e 'N;s/\n/ /;ta' .lycheeexclude)
22
- echo "LYCHEE_EXCLUDE=$LYCHEE_EXCLUDE" >> $GITHUB_ENV
23
-
24
19
- name : Link Checker
25
- uses : lycheeverse/lychee-action@v1
26
- with :
27
- args : --accept=200,429,403 --exclude ${{ env.LYCHEE_EXCLUDE }} "**/*.md"
20
+ id : lychee
21
+ uses : lycheeverse/lychee-action@master
28
22
env :
29
23
GITHUB_TOKEN : ${{secrets.GITHUB_TOKEN}}
24
+ with :
25
+ args : --verbose --accept=200,429,403 --exclude-file .lycheeexclude --no-progress "**/*.md" --exclude-mail
26
+ continue-on-error : true
30
27
31
28
- name : Create Issue From File
32
- if : env.exit_code != 0
33
- uses : peter-evans/create-issue-from-file@v4
29
+ if : always() && env.exit_code != '0' && github.event_name != 'pull_request'
30
+ uses : peter-evans/create-issue-from-file@main
34
31
with :
35
32
title : Link Checker Report
36
33
content-filepath : ./lychee/out.md
You can’t perform that action at this time.
0 commit comments