From bc25c8f8a2373a580e35e9f6bb902279c1cb8794 Mon Sep 17 00:00:00 2001 From: Justin Gosses Date: Sat, 19 Oct 2024 00:38:23 -0500 Subject: [PATCH] Update link_checker.yml trying to hard code URLS to exclude in actions yaml as .lycheeignore does not seem to be working and can't figure out why --- .github/workflows/link_checker.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/link_checker.yml b/.github/workflows/link_checker.yml index 719c367..c4b75e6 100644 --- a/.github/workflows/link_checker.yml +++ b/.github/workflows/link_checker.yml @@ -8,5 +8,7 @@ jobs: - name: lychee Link Checker id: lychee uses: lycheeverse/lychee-action@v2 + with: + args: --exclude 'https://wiki.seg.org/wiki/Open_data' --exclude 'https://www.gnu.org/licenses/license-list.html' --exclude 'https://www.gnu.org/licenses/license-list.html' - name: Fail if there were link errors run: exit ${{ steps.lychee.outputs.exit_code }}