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 bd38496 + ea7d7d5 commit 7556d1aCopy full SHA for 7556d1a
.github/workflows/links.yml
@@ -0,0 +1,29 @@
1
+name: Links
2
+
3
+on:
4
+ repository_dispatch:
5
+ workflow_dispatch:
6
+ schedule:
7
+ - cron: "00 6 * * *"
8
9
+jobs:
10
+ linkChecker:
11
+ runs-on: ubuntu-latest
12
+ permissions:
13
+ issues: write # required for peter-evans/create-issue-from-file
14
+ steps:
15
+ - uses: actions/checkout@v4
16
17
+ - name: Link Checker
18
+ id: lychee
19
+ uses: lycheeverse/lychee-action@v2
20
+ with:
21
+ fail: false
22
23
+ - name: Create Issue From File
24
+ if: steps.lychee.outputs.exit_code != 0
25
+ uses: peter-evans/create-issue-from-file@v5
26
27
+ title: Link Checker Report
28
+ content-filepath: ./lychee/out.md
29
+ labels: report, automated issue
0 commit comments