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 c0621aa commit ba310e9Copy full SHA for ba310e9
.github/workflows/links.yml
@@ -0,0 +1,29 @@
1
+# action: https://github.com/lycheeverse/lychee-action
2
+# lychee: https://github.com/lycheeverse/lychee
3
+
4
+name: Links
5
6
+on:
7
+ pull_request:
8
+ workflow_dispatch:
9
+ schedule:
10
+ #first of every month
11
+ - cron: "0 0 1 * *"
12
13
+jobs:
14
+ linkChecker:
15
+ runs-on: ubuntu-latest
16
+ steps:
17
+ - uses: actions/checkout@v4
18
19
+ - name: Link Checker
20
+ id: lychee
21
+ uses: lycheeverse/lychee-action@v1
22
23
+ - name: Create Issue From File
24
+ if: ${{ failure() && github.event_name != 'pull_request' }}
25
+ uses: peter-evans/create-issue-from-file@v5
26
+ with:
27
+ title: Link Checker Report
28
+ content-filepath: ./lychee/out.md
29
+ labels: report, automated issue
0 commit comments