-
Notifications
You must be signed in to change notification settings - Fork 16
49 lines (43 loc) · 1.22 KB
/
check-links.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
# This workflow checks the links in plaintext and HTML files
name: Check Links
on:
# Uncomment the 'pull_request' line below to trigger the workflow in PR
#pull_request:
# Schedule runs on 12 noon every Sunday
schedule:
- cron: '0 12 * * 0'
jobs:
check_links:
name: Check Links
runs-on: ubuntu-latest
steps:
- name: Checkout the repository
uses: actions/checkout@v4
with:
path: repository
- name: Checkout the website
uses: actions/checkout@v4
with:
ref: gh-pages
path: website
- name: Link Checker
uses: lycheeverse/[email protected]
with:
# 429: Too many requests
args: >
--accept 429
--exclude "http://localhost:1313/"
--exclude "^mailto:"
--exclude "^https://fonts.gstatic.com/"
--exclude "^https://www.sciencedirect.com/"
--exclude "file:///"
--verbose
"repository/**/*.md"
"website/**/*.html"
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- name: Create Issue From File
uses: peter-evans/create-issue-from-file@v5
with:
title: Link Checker Report
content-filepath: ./lychee/out.md