Skip to content

Commit d172c28

Browse files
committed
Add links checking
1 parent a58d83b commit d172c28

1 file changed

Lines changed: 29 additions & 0 deletions

File tree

.github/workflows/links.yaml

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
name: Check links in AsciiDoc
2+
3+
on:
4+
pull_request:
5+
push:
6+
schedule:
7+
- cron: "0 6 * * 1"
8+
workflow_dispatch:
9+
10+
jobs:
11+
lychee:
12+
runs-on: ubuntu-latest
13+
14+
steps:
15+
- name: Check out repository
16+
uses: actions/checkout@v5
17+
18+
- name: Check links in AsciiDoc files
19+
uses: lycheeverse/lychee-action@v2
20+
with:
21+
fail: true
22+
args: >-
23+
--verbose
24+
--no-progress
25+
--timeout 20
26+
--retry-wait-time 5
27+
--max-retries 2
28+
--exclude-mail
29+
"./**/*.adoc"

0 commit comments

Comments
 (0)