Skip to content

Commit 9e44feb

Browse files
committed
new checker
1 parent b760cd6 commit 9e44feb

File tree

1 file changed

+20
-12
lines changed

1 file changed

+20
-12
lines changed

.github/workflows/check-links.yml

Lines changed: 20 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -24,15 +24,23 @@ jobs:
2424
bundler-cache: true # runs 'bundle install' and caches installed gems automatically
2525
- name: Build jekyll website
2626
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

Comments
 (0)