Skip to content

Check Links

Check Links #2174

Workflow file for this run

name: Check Links
on:
workflow_dispatch:
pull_request:
paths:
- plugins/**
schedule:
- cron: "0 1 * * *"
jobs:
linkChecker:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Link Checker
id: lychee
uses: lycheeverse/lychee-action@v2
with:
args: --verbose --no-progress plugins.json
fail: true
token: ${{ secrets.LINKCHECKER }}