Broken link checker #28
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
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}} |