-
Notifications
You must be signed in to change notification settings - Fork 377
49 lines (44 loc) · 1.33 KB
/
link-checker.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
name: link checker
on:
repository_dispatch:
# Run action manually when needed
workflow_dispatch:
# Check links once a week on Monday
schedule:
- cron: "00 00 * * 1"
# Runs on each PR for the master branch
pull_request:
branches:
- "master"
jobs:
Checking-Links:
runs-on: ubuntu-latest
steps:
# Checks out a copy of your repository on the ubuntu-latest machine
- name: Checkout code
uses: actions/checkout@v4
# fetch external files && Building the docs
- name: Build the docs
uses: actions/setup-node@v3
with:
node-version: 16
- run: npm run deploy-docs
# Run link checker on the generated HTML
- name: Link Checker
id: lychee
uses: lycheeverse/lychee-action@ec7614d7605b47efb08dc370f6d0a71884cba944 # 1.8.0
env:
GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}}
with:
args: >
--config ./lychee.toml
"build/**/*" "tools/fetch-external.sh"
- name: Create Issue From File
if: |
github.event_name != 'pull_request' &&
env.lychee_exit_code != 0
uses: peter-evans/create-issue-from-file@v4
with:
title: Link Checker Report
content-filepath: ./lychee/out.md
labels: good-first-issue, automated issue