Fix #361 #924
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# This is a basic workflow to check for broken links with GitHub Actions | |
name: Link Checker | |
on: | |
push: | |
branches: | |
- main | |
- "renovate/**" | |
pull_request: | |
jobs: | |
link-checker: | |
timeout-minutes: 2 | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4 | |
- name: Link Checker | |
id: lychee | |
uses: lycheeverse/lychee-action@c053181aa0c3d17606addfe97a9075a32723548a # v1.9.3 | |
with: | |
# Exclude the image.sc forum (which works) but returns 403 from | |
# github runners and exclude relative links to other pages. Ignore | |
# the whole of the project slug README since the links are | |
# necessarily not real links - i.e. demos and to be filled by | |
# cookiecutter values. | |
args: | |
"--verbose --exclude https://forum.image.sc/ --exclude docs/pages | |
--exclude-path '{{cookiecutter.project_slug}}/README.md' -- ." | |
fail: true | |
jobSummary: true | |
env: | |
GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}} |