From 11c72d995aad3873dd713a0cbdb7bf8ffa1e69bc Mon Sep 17 00:00:00 2001 From: Sayali Gaikawad Date: Mon, 8 Apr 2024 13:44:45 -0700 Subject: [PATCH] Ignore release notes folder for link checker workflow Signed-off-by: Sayali Gaikawad --- .github/workflows/link-checker.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/link-checker.yml b/.github/workflows/link-checker.yml index f1f7fa30e8..491348b857 100644 --- a/.github/workflows/link-checker.yml +++ b/.github/workflows/link-checker.yml @@ -14,7 +14,7 @@ jobs: id: lychee uses: lycheeverse/lychee-action@v1 with: - args: --verbose --max-retries 5 --retry-wait-time 10 --accept=200,403,429 --exclude-path tests/ ./ + args: --verbose --max-retries 5 --retry-wait-time 10 --accept=200,403,429 --exclude-path tests/ ./ release-notes/ fail: true env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}