From 7d2f0df35eed247d0231c10f61bfc6c688cbe338 Mon Sep 17 00:00:00 2001 From: Yu-Ting Hsiung Date: Sat, 27 Dec 2025 20:28:59 +0800 Subject: [PATCH] ci: add configuration file for link checker --- .github/workflows/links.yml | 1 - lychee.toml | 5 +++++ 2 files changed, 5 insertions(+), 1 deletion(-) create mode 100644 lychee.toml diff --git a/.github/workflows/links.yml b/.github/workflows/links.yml index c9d73f974..b1d643217 100644 --- a/.github/workflows/links.yml +++ b/.github/workflows/links.yml @@ -19,7 +19,6 @@ jobs: id: lychee uses: lycheeverse/lychee-action@v2 with: - args: . --exclude-path "tests" fail: false - name: Broken Links Report diff --git a/lychee.toml b/lychee.toml new file mode 100644 index 000000000..a28b14d29 --- /dev/null +++ b/lychee.toml @@ -0,0 +1,5 @@ +exclude_path = ["./tests"] + +exclude = [ + "https://blog.devgenius.io/continuous-delivery-made-easy-in-python-c085e9c82e69" # Membership only article, sometimes it's 403 forbidden +]