-
Notifications
You must be signed in to change notification settings - Fork 218
78 lines (71 loc) · 2.76 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
# Check links in the repository and documentation
#
# This workflow runs the lychee tool to check all external links in plaintext
# and HTML files. It will create an issue if broken links are found.
#
# It is scheduled to run weekly at 12 noon every Sunday.
#
name: Check Links
on:
# Uncomment the 'pull_request' line below to trigger the workflow in PR
# pull_request:
workflow_dispatch:
# Schedule runs on 12 noon every Sunday
schedule:
- cron: '0 12 * * 0'
jobs:
check_links:
name: Check Links
runs-on: ubuntu-latest
if: github.repository == 'GenericMappingTools/pygmt'
steps:
- name: Checkout the repository
uses: actions/[email protected]
with:
path: repository
- name: Checkout the documentation
uses: actions/[email protected]
with:
ref: gh-pages
path: documentation
- name: Link Checker
id: lychee
uses: lycheeverse/[email protected]
with:
fail: false # Don't fail action on broken links
output: /tmp/lychee-out.md
# 429: Too many requests
args: >
--accept 429
--exclude "^https://docs.generic-mapping-tools.org/6.[0-9]?/%s$"
--exclude "^https://docs.generic-mapping-tools.org/6.[0-9]?/%3Cmodule-name%3E.html$"
--exclude "^https://doi.org"
--exclude "^https://github.com/GenericMappingTools/gmt/releases/tag/X.Y.Z$"
--exclude "^https://github.com/GenericMappingTools/pygmt/edit"
--exclude "^https://github.com/GenericMappingTools/pygmt/issues/new"
--exclude "^https://github.com/GenericMappingTools/pygmt/pull/[0-9]*$"
--exclude "^https://github.com/GenericMappingTools/pygmt/issues/[0-9]*$"
--exclude "^https://github.com/GenericMappingTools/pygmt/releases/tag/%7B%7Bpath%7D%7D"
--exclude "^https://hackmd.io/@pygmt"
--exclude "^https://test.pypi.org/simple/"
--exclude "^https://www.adobe.com/jp/print/postscript/pdfs/PLRM.pdf"
--exclude "^https://www.generic-mapping-tools.org/remote-datasets/%s$"
--exclude "^https://www.pygmt.org/%7B%7Bpath%7D%7D"
--exclude "^https://www.researchgate.net/"
--exclude "^https://zenodo.org/badge/DOI/"
--verbose
"repository/**/*.rst"
"repository/**/*.md"
"repository/**/*.py"
"documentation/dev/**/*.html"
- name: Get current date
id: date
run: echo "date=$(date +'%Y-%m-%d')" >> $GITHUB_OUTPUT
- name: Create Issue From File
if: env.lychee_exit_code != 0
run: |
cd repository/
title="Link Checker Report on ${{ steps.date.outputs.date }}"
gh issue create --title "$title" --body-file /tmp/lychee-out.md
env:
GH_TOKEN: ${{ github.token }}