From 4b5e4b6da552cff47c24be5b09aa08770e86c88f Mon Sep 17 00:00:00 2001 From: unknown Date: Wed, 4 Feb 2026 16:43:51 +0530 Subject: [PATCH] Feat: add GitHub Action for automatic link checking (closes #1786) --- .github/workflows/link-check.yml | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 .github/workflows/link-check.yml diff --git a/.github/workflows/link-check.yml b/.github/workflows/link-check.yml new file mode 100644 index 0000000..2de712e --- /dev/null +++ b/.github/workflows/link-check.yml @@ -0,0 +1,25 @@ +name: Link Checker + +on: + pull_request: + schedule: + - cron: '0 0 * * 0' + workflow_dispatch: + +jobs: + check-links: + runs-on: ubuntu-latest + + steps: + - name: Checkout repository + uses: actions/checkout@v4 + + - name: Run Lychee link checker + uses: lycheeverse/lychee-action@v1 + with: + args: > + --verbose + --no-progress + --exclude-mail + --timeout 10 + data.json