From 48cd0c5bd529173d288ca78f9dc999a481efee56 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Krzysztof=20S=C5=82onka?= Date: Fri, 7 Feb 2025 09:50:41 +0100 Subject: [PATCH] fix(lint): exclude jwt.io MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit https://jwt.io/ is clearly blocking GH requests - it works normally from a browser, we need to exclude it to make the link checker pass Signed-off-by: Krzysztof SÅ‚onka --- .github/workflows/ci.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 36eaaad18..42f7c2246 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -61,6 +61,7 @@ jobs: --exclude https://coredns.io \ --exclude 'https://argo-cd.readthedocs.io/en/stable/' \ --exclude 'https://docs.cilium.io/en/v1.14/operations/upgrade/' \ + --exclude 'https://jwt.io/' \ --max-connections-per-host=8 \ --max-response-body-size 100000000 \ --rate-limit 50 \ @@ -82,6 +83,7 @@ jobs: --exclude https://coredns.io \ --exclude 'https://argo-cd.readthedocs.io/en/stable/' \ --exclude 'https://docs.cilium.io/en/v1.14/operations/upgrade/' \ + --exclude 'https://jwt.io/' \ --max-connections-per-host=8 \ --max-response-body-size 100000000 \ --rate-limit 50 \