Skip to content

Commit

Permalink
Fix if expressions in GitHub actions (#265)
Browse files Browse the repository at this point in the history
  • Loading branch information
YDX-2147483647 authored Nov 8, 2024
1 parent f81112d commit 5cd5ba7
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/links.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}}

- name: Create Issue From File
if: ${{ steps.lychee.outputs.exit_code }} != 0
if: steps.lychee.outputs.exit_code != 0
uses: peter-evans/create-issue-from-file@v5
with:
title: Link Checker Report
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ jobs:
uses: lycheeverse/lychee-action@v2

- name: Create Issue From File
if: ${{ steps.lychee.outputs.exit_code }} != 0
if: steps.lychee.outputs.exit_code != 0
uses: peter-evans/create-issue-from-file@v5
with:
title: Link Checker Report
Expand Down

0 comments on commit 5cd5ba7

Please sign in to comment.