Skip to content

Broken link checker #14

Broken link checker

Broken link checker #14

Workflow file for this run

name: Broken link checker
on:
# can be used to run workflow manually
workflow_dispatch:
schedule:
# Automatically run on every sunday of the month
- cron: '0 1 * * 0'
jobs:
broken-link-check:
runs-on: ubuntu-latest
timeout-minutes: 30
steps:
- name: Check out repository
uses: actions/[email protected]
- name: Link Checker
id: lychee
uses: lycheeverse/[email protected]
with:
fail: true
env:
GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}}