From efdcfcbd889155df34e638378bec68a69cdd5b04 Mon Sep 17 00:00:00 2001 From: Peter Sobolewski <76622105+psobolewskiPhD@users.noreply.github.com> Date: Fri, 8 Nov 2024 16:58:09 -0500 Subject: [PATCH 1/2] Update README.md to include continue-on-error: true in action --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index 211ef26..85b5672 100644 --- a/README.md +++ b/README.md @@ -35,6 +35,7 @@ jobs: - name: Link Checker id: lychee uses: lycheeverse/lychee-action@v2 + continue-on-error: true - name: Create Issue From File if: ${{ steps.lychee.outputs.exit_code }} != 0 From 5d5586d6e1a7408ca95d43b8f7ccd7d966dca2a2 Mon Sep 17 00:00:00 2001 From: Matthias Endler Date: Tue, 19 Nov 2024 17:27:02 +0100 Subject: [PATCH 2/2] Update README.md --- README.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 85b5672..a083e38 100644 --- a/README.md +++ b/README.md @@ -35,7 +35,8 @@ jobs: - name: Link Checker id: lychee uses: lycheeverse/lychee-action@v2 - continue-on-error: true + with: + fail: false - name: Create Issue From File if: ${{ steps.lychee.outputs.exit_code }} != 0