We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cdb7e20 commit 51b3c5eCopy full SHA for 51b3c5e
.github/workflows/linkcheck.yaml
@@ -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