We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 418b2ba commit 831ab64Copy full SHA for 831ab64
.github/workflows/links.yml
@@ -0,0 +1,37 @@
1
+name: Links
2
+
3
+on:
4
+ pull_request:
5
+ workflow_dispatch:
6
+ schedule:
7
+ - cron: "43 12 * * *"
8
9
+jobs:
10
+ check:
11
+ runs-on: ubuntu-latest
12
13
+ steps:
14
+ - uses: actions/checkout@v5
15
16
+ - uses: actions/cache@v4
17
+ with:
18
+ path: .lycheecache
19
+ key: cache-lychee-${{ github.sha }}
20
+ restore-keys: cache-lychee-
21
22
+ - uses: lycheeverse/lychee-action@v2
23
24
+ fail: true
25
+ args: >
26
+ --root-dir ${{ github.workspace }}
27
+ --verbose
28
+ --no-progress
29
+ --cache
30
+ --max-cache-age 2d
31
+ --include-fragments
32
+ --exclude 'api.hetzner.cloud'
33
+ --exclude 'api.hetzner.com'
34
+ --exclude 'codecov.io'
35
+ --exclude '169.254.169.254'
36
+ '**/*.md'
37
+ '**/*.go'
0 commit comments