From 48170fa8f275c397a3d3e648d31d08676b3dd5b1 Mon Sep 17 00:00:00 2001 From: Poornima Krishnasamy Date: Fri, 12 Jan 2024 17:50:13 +0000 Subject: [PATCH] Add back report job and remove trigger on PR --- .github/workflows/link-checker.yml | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/.github/workflows/link-checker.yml b/.github/workflows/link-checker.yml index 06f7817b..9c473fdf 100644 --- a/.github/workflows/link-checker.yml +++ b/.github/workflows/link-checker.yml @@ -3,8 +3,6 @@ name: Links on: repository_dispatch: workflow_dispatch: - pull_request: - types: [opened, synchronize, reopened] schedule: - cron: "00 18 * * *" @@ -20,3 +18,10 @@ jobs: args: --verbose --no-progress **/*.md **/*.html **/*.erb .ignore-links --accept 200,429,403,400,301,302,401 --exclude-mail env: GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}} + + - name: Create Issue From File + uses: peter-evans/create-issue-from-file@v3 + with: + title: Link Checker Report + content-filepath: ./lychee/out.md + labels: documentation \ No newline at end of file