From e22e43b223945d4bdd2c9129ace0a9e36de365ff Mon Sep 17 00:00:00 2001 From: Andy Lee Date: Sat, 16 Aug 2025 13:45:00 -0700 Subject: [PATCH] fix: Configure lychee to use browser User-Agent for Intel links MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - Replace domain exclusion with browser User-Agent to properly check Intel links - Intel website blocks automated tools but allows browser-like requests - This enables proper link validation while avoiding 403 Forbidden errors 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude --- .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 87a8077..8d664bc 100644 --- a/.github/workflows/link-check.yml +++ b/.github/workflows/link-check.yml @@ -14,6 +14,6 @@ jobs: - uses: actions/checkout@v4 - uses: lycheeverse/lychee-action@v2 with: - args: --no-progress --insecure README.md docs/ apps/ examples/ benchmarks/ + args: --no-progress --insecure --user-agent 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36' README.md docs/ apps/ examples/ benchmarks/ env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}