From 48f0a2837b7c9416b9863059291d967ca5131063 Mon Sep 17 00:00:00 2001 From: Eddie Rowe <74205376+eddie-rowe@users.noreply.github.com> Date: Wed, 15 Mar 2023 10:27:43 -0500 Subject: [PATCH] Tune 404 checker to exclude false-positives and use intended file path (#16636) --- .github/workflows/broken-link-check.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/broken-link-check.yml b/.github/workflows/broken-link-check.yml index 8e865a485f..bbfcd73c6b 100644 --- a/.github/workflows/broken-link-check.yml +++ b/.github/workflows/broken-link-check.yml @@ -15,7 +15,7 @@ jobs: id: lychee uses: lycheeverse/lychee-action@v1.6.1 with: - args: ./docs --base https://developer.hashicorp.com/ --exclude-all-private --exclude .png --exclude .svg --max-concurrency=24 --no-progress --verbose + args: ./website/content/docs/ --base https://developer.hashicorp.com/ --exclude-all-private --exclude '\.(svg|gif|jpg|png)' --exclude 'manage\.auth0\.com' --max-concurrency=24 --no-progress --verbose # Fail GitHub action when broken links are found? fail: false env: