Skip to content

Commit 811fa1c

Browse files
committed
CI: Fix incorrect if expression in the 'Check Links' workflow
xref: lycheeverse/lychee-action#265
1 parent fd92fb7 commit 811fa1c

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/check-links.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# Check links in the repository and documentation
22
#
3-
# This workflow runs the lychee tool to check all external links in plaintext
4-
# and HTML files. It will create an issue if broken links are found.
3+
# This workflow runs the lychee tool to check all external links in plaintext and HTML
4+
# files. It will create an issue if broken links are found.
55
#
66
# It is scheduled to run weekly at 12 noon every Sunday.
77
#
@@ -76,7 +76,7 @@ jobs:
7676
run: echo "date=$(date +'%Y-%m-%d')" >> $GITHUB_OUTPUT
7777

7878
- name: Create Issue From File
79-
if: ${{ steps.lychee.outputs.exit_code }} != 0
79+
if: steps.lychee.outputs.exit_code != 0
8080
run: |
8181
cd repository/
8282
title="Link Checker Report on ${CURRENT_DATE}"

0 commit comments

Comments
 (0)