We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b635474 commit 77a4fd3Copy full SHA for 77a4fd3
.github/workflows/check_links.yaml
@@ -0,0 +1,33 @@
1
+#https://github.com/lycheeverse/lychee-action
2
+name: 🔎 Check Links 🔗
3
+
4
+on:
5
+ repository_dispatch:
6
+ workflow_dispatch:
7
+ schedule:
8
+ - cron: "15 0 * * 1" #12:15 AM UTC --> 06:00 AM NPT Tue
9
10
+jobs:
11
+ linkChecker:
12
+ runs-on: ubuntu-latest
13
+ permissions:
14
+ issues: write
15
+ steps:
16
+ - uses: actions/checkout@v4
17
+ with:
18
+ path: main
19
+ filter: "blob:none"
20
21
+ - name: Link Checker
22
+ id: lychee
23
+ uses: lycheeverse/lychee-action@v2
24
25
+ fail: false
26
27
+ - name: Create Issue From File
28
+ if: steps.lychee.outputs.exit_code != 0
29
+ uses: peter-evans/create-issue-from-file@v5
30
31
+ title: Link Checker Report
32
+ content-filepath: ./lychee/out.md
33
+ labels: report, automated issue
0 commit comments