From 731bf1a2affebd80fab6515ba61d2648a76929a4 Mon Sep 17 00:00:00 2001 From: Kevin Deldycke Date: Wed, 9 Oct 2024 10:45:42 +0400 Subject: [PATCH] Fix variable name (#253) lychee_exit_code has been renamed to exit_code in 22c8e46b8f296cda676f8f92c634c4a87b436779 --- .github/workflows/links.yml | 2 +- README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/links.yml b/.github/workflows/links.yml index 506273a..7c9d02a 100644 --- a/.github/workflows/links.yml +++ b/.github/workflows/links.yml @@ -21,7 +21,7 @@ jobs: GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}} - name: Create Issue From File - if: env.lychee_exit_code != 0 + if: env.exit_code != 0 uses: peter-evans/create-issue-from-file@v5 with: title: Link Checker Report diff --git a/README.md b/README.md index 63695ec..e974111 100644 --- a/README.md +++ b/README.md @@ -35,7 +35,7 @@ jobs: uses: lycheeverse/lychee-action@v2 - name: Create Issue From File - if: env.lychee_exit_code != 0 + if: env.exit_code != 0 uses: peter-evans/create-issue-from-file@v5 with: title: Link Checker Report