From 3ef2fd6edb25dac37f2bb125b469e503882ee9d9 Mon Sep 17 00:00:00 2001 From: Abe Pazos Date: Tue, 26 Dec 2023 14:19:58 +0000 Subject: [PATCH] Try fix links checker --- .github/workflows/links.yml | 16 +++++----------- 1 file changed, 5 insertions(+), 11 deletions(-) diff --git a/.github/workflows/links.yml b/.github/workflows/links.yml index 12e3f2a..fdc439c 100644 --- a/.github/workflows/links.yml +++ b/.github/workflows/links.yml @@ -1,6 +1,8 @@ name: Links on: + repository_dispatch: + workflow_dispatch: push: branches: - generated @@ -9,17 +11,9 @@ jobs: linkChecker: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v3 - + - uses: actions/checkout@v4 + with: + ref: generated - name: Link Checker id: lychee uses: lycheeverse/lychee-action@v1 - - - name: Create Issue From File - if: env.lychee_exit_code != 0 - uses: peter-evans/create-issue-from-file@v4 - with: - title: Link Checker Report - content-filepath: ./lychee/out.md - labels: report, automated issue -