diff --git a/.github/workflows/lychee.yml b/.github/workflows/lychee.yml index 725f558..22acd59 100644 --- a/.github/workflows/lychee.yml +++ b/.github/workflows/lychee.yml @@ -3,7 +3,9 @@ name: Check Markdown links on: workflow_dispatch: schedule: - - cron: '00 18 * * *' # Run once daily at 18:00 UTC + - cron: ' + + 18 * * *' # Run once daily at 18:00 UTC jobs: check-links: @@ -26,9 +28,10 @@ jobs: with: args: --base . --verbose --no-progress './docs/*.md' token: ${{ secrets.CUSTOM_TOKEN }} + fail: false - name: Create Issue From File - if: env.exit_code != 0 + if: ${{ steps.lychee.outputs.exit_code }} != 0 uses: peter-evans/create-issue-from-file@v5 with: title: Link Checker Report