This repository was archived by the owner on Mar 17, 2025. It is now read-only.
Link Checker #144
This file contains hidden or 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: Link Checker | |
on: | |
push: | |
repository_dispatch: | |
workflow_dispatch: | |
schedule: | |
- cron: "0 0 * * *" | |
jobs: | |
linkChecker: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Link Checker | |
uses: lycheeverse/lychee-action@v1.8.0 | |
with: | |
fail: true | |
args: --exclude-mail --exclude .+localhost.+ --max-concurrency 20 ./**/*.md | |
env: | |
GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}} |