From 4b5e4b6da552cff47c24be5b09aa08770e86c88f Mon Sep 17 00:00:00 2001 From: unknown Date: Wed, 4 Feb 2026 16:43:51 +0530 Subject: [PATCH 1/3] 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 From 227ff64349f70ee64bd9aef62143a40c267cb3c5 Mon Sep 17 00:00:00 2001 From: Sammy Hori Date: Sat, 4 Apr 2026 02:26:40 +0100 Subject: [PATCH 2/3] Change lychee-action version in .github/workflows/link-check.yml --- .github/workflows/link-check.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/link-check.yml b/.github/workflows/link-check.yml index 2de712e..b2c6c47 100644 --- a/.github/workflows/link-check.yml +++ b/.github/workflows/link-check.yml @@ -15,7 +15,7 @@ jobs: uses: actions/checkout@v4 - name: Run Lychee link checker - uses: lycheeverse/lychee-action@v1 + uses: lycheeverse/lychee-action@v2 with: args: > --verbose From 07cb700e039c71ac5f38240d15eb45628695f954 Mon Sep 17 00:00:00 2001 From: Sammy Hori Date: Sat, 4 Apr 2026 02:28:39 +0100 Subject: [PATCH 3/3] Remove exclude-mail arg in .github/workflows/link-check.yml --- .github/workflows/link-check.yml | 1 - 1 file changed, 1 deletion(-) diff --git a/.github/workflows/link-check.yml b/.github/workflows/link-check.yml index b2c6c47..48defa7 100644 --- a/.github/workflows/link-check.yml +++ b/.github/workflows/link-check.yml @@ -20,6 +20,5 @@ jobs: args: > --verbose --no-progress - --exclude-mail --timeout 10 data.json