-
-
Notifications
You must be signed in to change notification settings - Fork 1
39 lines (36 loc) · 1.08 KB
/
links.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
name: links
on:
push:
branches:
- main
jobs:
links:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Check dead links
uses: lycheeverse/[email protected]
with:
fail: true
jobSummary: true
args: >-
--verbose
--no-progress
'./content/**/*.md'
'./content/**/*.html'
'./content/**/*.gohtml'
--user-agent "Mozilla/5.0 (Linux; Android 6.0; Nexus 5 Build/MRA58N) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/115.0.0.0 Mobile Safari/537.36"
--exclude whatismyipaddress.com
--exclude apple.com
--exclude twitter.com
--exclude hhkeyboard.us
--exclude pkg.go.dev
--exclude www.youtube-nocookie.com
--exclude trymeeter.com
--exclude ifconfig.co
--exclude regexr.com
--exclude open.spotify.com
--exclude www.midjourney.com
env:
GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}}