-
-
Notifications
You must be signed in to change notification settings - Fork 66
52 lines (47 loc) · 1.46 KB
/
md-link-check.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
name: Check Markdown links
on: push
jobs:
markdown-link-check:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@master
- uses: gaurav-nelson/github-action-markdown-link-check@v1
# name: Markdown Link Check
# on:
# push:
# pull_request:
# branches:
# - dev
# jobs:
# link-check:
# runs-on: ubuntu-22.04
# env:
# CI: true
# steps:
# - name: Setup Action
# uses: actions/checkout@master
# # - name: Setup Node
# # uses: actions/setup-node@v4
# # with:
# # node-version: 12.x
# - name: Install dependencies
# run: npm install
# - name: Run link check
# run: npm run link-check
# - name: Show broken links
# if: failure()
# run: |
# cat log | awk -v RS="FILE:" 'match($0, /(\S*\.md).*\[✖\].*(\d*\slinks\schecked\.)(.*)/, arr ) { print "FILE:"arr[1] arr[3] > "brokenlinks"}'
# rm -f err log
# cat brokenlinks
# links=`cat brokenlinks`
# links="${links//'%'/'%25'}"
# links="${links//$'\n'/'%0A'}"
# links="${links//$'\r'/'%0D'}"
# echo ::set-output name=links::**Following links are broken:** %0A$links
# - name: Send comment to PR with broken links
# if: failure() && github.event_name == 'pull_request'
# uses: thollander/actions-comment-pull-request@main
# with:
# message: ${{ steps.brokenlinks.outputs.links }}
# # GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}