@@ -24,15 +24,23 @@ jobs:
24
24
bundler-cache : true # runs 'bundle install' and caches installed gems automatically
25
25
- name : Build jekyll website
26
26
run : bundle exec jekyll build
27
- - name : Check for broken links
28
- uses :
lycheeverse/[email protected]
29
- with :
30
- args : -v -n ./_site/utils/env/index.html
31
- env :
32
- GITHUB_TOKEN : ${{secrets.GITHUB_TOKEN}}
33
- - name : Create Issue From File
34
- uses : peter-evans/create-issue-from-file@v3
35
- with :
36
- title : Link Checker Report
37
- content-filepath : ./lychee/out.md
38
- labels : report, automated issue
27
+ # - name: Check for broken links
28
+ # uses: lycheeverse/[email protected]
29
+ # with:
30
+ # args: -v -n ./_site/utils/env/index.html
31
+ # env:
32
+ # GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}}
33
+ # - name: Create Issue From File
34
+ # uses: peter-evans/create-issue-from-file@v3
35
+ # with:
36
+ # title: Link Checker Report
37
+ # content-filepath: ./lychee/out.md
38
+ # labels: report, automated issue
39
+ - name : Check links using container
40
+ uses : ruzickap/action-my-broken-link-checker@v1
41
+ with :
42
+ url : https://my-testing-domain.com
43
+ pages_path : ./public/
44
+ cmd_params : " --skip-tls-verification --verbose --color=always"
45
+ run_timeout : 10
46
+ debug : true
0 commit comments