diff --git a/.github/workflows/linkcheck.yaml b/.github/workflows/linkcheck.yaml index ef22bd38f..a08c825a7 100644 --- a/.github/workflows/linkcheck.yaml +++ b/.github/workflows/linkcheck.yaml @@ -1,7 +1,9 @@ name: Links on: - pull_request: + schedule: + - cron: "00 18 * * 0" + jobs: linkChecker: @@ -18,10 +20,10 @@ jobs: fail: false jobSummary: true -# - name: Create Issue From File -# if: steps.lychee.outputs.exit_code != 0 -# uses: peter-evans/create-issue-from-file@v5 -# with: -# title: Link Checker Report -# content-filepath: ./lychee/out.md -# labels: report, automated issue + - name: Create Issue From File + if: steps.lychee.outputs.exit_code != 0 + uses: peter-evans/create-issue-from-file@v5 + with: + title: Link Checker Report + content-filepath: ./lychee/out.md + labels: report, automated issue