From 8421492af2be5ace37984b4671957ddd4be09552 Mon Sep 17 00:00:00 2001 From: 2qx <2qx@small.neomailbox.ch> Date: Tue, 7 Mar 2023 17:31:12 -0500 Subject: [PATCH] switch issue creator --- .github/workflows/check_links.yml | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/.github/workflows/check_links.yml b/.github/workflows/check_links.yml index 671ee7f..81987a8 100644 --- a/.github/workflows/check_links.yml +++ b/.github/workflows/check_links.yml @@ -17,14 +17,16 @@ jobs: markdown-link-check: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v2 - name: Link Checker - uses: peter-evans/link-checker@v1 + uses: lycheeverse/lychee-action@v1.5.1 with: - args: -v -r *.md + # Use different output file path + output: /tmp/out.md + env: + GITHUB_TOKEN: ${{secrets.LINKS}} - name: Create Issue From File uses: peter-evans/create-issue-from-file@v4 with: title: Link Checker Report - content-filepath: ./link-checker/out.md + content-filepath: /tmp/out.md labels: report, automated issue