-
Notifications
You must be signed in to change notification settings - Fork 8
59 lines (55 loc) · 1.53 KB
/
lint-markdown.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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
name: Lint Markdown files
on:
push:
branches: ["main"]
paths:
- "**/*.md"
- ".github/workflows/lint-markdown.yml"
pull_request:
branches: ["main"]
paths:
- "**/*.md"
- ".github/workflows/lint-markdown.yml"
schedule:
- cron: "44 7 * * 2"
workflow_dispatch:
permissions:
contents: read
pull-requests: write
jobs:
lint:
name: Lint Markdown
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Lint Markdown
uses: DavidAnson/markdownlint-cli2-action@v17
with:
globs: "**/*.md"
config: "maa-cli/docs/.markdownlint.yaml"
check-links:
name: Check Dead Links
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Lychee Cache
uses: actions/cache@v4
with:
path: .lycheecache
key: cache-lychee-${{ github.sha }}
restore-keys: cache-lychee-
- name: Check Dead Links
uses: lycheeverse/lychee-action@v2
with:
args: >
--verbose --no-progress --cache --max-cache-age 1d
-- .
- name: Comment on Pull Request if Dead Links Found
if: failure() && github.event_name == 'pull_request'
uses: marocchino/sticky-pull-request-comment@v2
with:
message: |
Dead links found in the documentation. Please fix them.
Details: https://github.com/MaaAssistantArknights/maa-cli/actions/runs/${{ github.run_id }}