Skip to content

Commit 51b3c5e

Browse files
committed
Link check temporary addition
Signed-off-by: Lynette Miles <[email protected]>
1 parent cdb7e20 commit 51b3c5e

File tree

1 file changed

+27
-0
lines changed

1 file changed

+27
-0
lines changed

.github/workflows/linkcheck.yaml

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
name: Links
2+
3+
on:
4+
pull_request:
5+
6+
jobs:
7+
linkChecker:
8+
runs-on: ubuntu-latest
9+
permissions:
10+
issues: write # required for peter-evans/create-issue-from-file
11+
steps:
12+
- uses: actions/checkout@v4
13+
14+
- name: Link Checker
15+
id: lychee
16+
uses: lycheeverse/lychee-action@v2
17+
with:
18+
fail: false
19+
jobSummary: true
20+
21+
# - name: Create Issue From File
22+
# if: steps.lychee.outputs.exit_code != 0
23+
# uses: peter-evans/create-issue-from-file@v5
24+
# with:
25+
# title: Link Checker Report
26+
# content-filepath: ./lychee/out.md
27+
# labels: report, automated issue

0 commit comments

Comments
 (0)