From 4ac2aa3193ca2e9f8a55b2d008ba178e90b0e142 Mon Sep 17 00:00:00 2001 From: Jake Henning <59198928+jkhenning@users.noreply.github.com> Date: Mon, 27 Dec 2021 19:12:35 +0200 Subject: [PATCH] Update links.yml --- .github/workflows/links.yml | 14 ++++++-------- 1 file changed, 6 insertions(+), 8 deletions(-) diff --git a/.github/workflows/links.yml b/.github/workflows/links.yml index e406e415..3be0b7df 100644 --- a/.github/workflows/links.yml +++ b/.github/workflows/links.yml @@ -22,16 +22,14 @@ jobs: steps: - uses: actions/checkout@v2 + - name: Find all markdown files + id: find_files + run: echo '::set-output files=$(find . -name "*.md")' + - name: Link Checker id: lychee uses: lycheeverse/lychee-action@v1.2.0 + with: + args: --verbose --no-progress ${{steps.find_files.outputs.files}} env: GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}} - - - name: Create Issue From File - if: ${{ steps.lychee.outputs.exit_code != 0 }} - uses: peter-evans/create-issue-from-file@v3 - with: - title: Link Checker Report - content-filepath: ./lychee/out.md - labels: report, automated issue