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.
2 parents 81b30f8 + aca5fe6 commit d8bdce3Copy full SHA for d8bdce3
.github/workflows/linkcheck.yml
@@ -0,0 +1,25 @@
1
+name: Links
2
+
3
+on:
4
+ repository_dispatch:
5
+ workflow_dispatch:
6
+ schedule:
7
+ - cron: "10 02 * * *"
8
9
+jobs:
10
+ linkChecker:
11
+ runs-on: ubuntu-latest
12
+ steps:
13
+ - uses: actions/checkout@v3
14
15
+ - name: Link Checker
16
+ id: lychee
17
+ uses: lycheeverse/lychee-action@v1.9.0
18
19
+ - name: Create Issue From File
20
+ if: env.lychee_exit_code != 0
21
+ uses: peter-evans/create-issue-from-file@v4
22
+ with:
23
+ title: Link Checker Report
24
+ content-filepath: ./lychee/out.md
25
+ labels: report, automated issue
0 commit comments