From c37395b583fb49c22280459b3a20259633443b9f Mon Sep 17 00:00:00 2001 From: Radha <86818441+DrW3RK@users.noreply.github.com> Date: Tue, 20 Jun 2023 16:22:12 +0200 Subject: [PATCH] Daily check for broken links (#4934) Modifying the link checker schedule to run it daily instead of monthly cadence https://github.com/paritytech/polkadot/issues/7311 --- .github/workflows/audit-links.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/audit-links.yml b/.github/workflows/audit-links.yml index f65fe09614c1..b709578558f7 100644 --- a/.github/workflows/audit-links.yml +++ b/.github/workflows/audit-links.yml @@ -1,7 +1,7 @@ name: Audit Wiki Links on: schedule: - - cron: '0 0 1 * * ' # Once a month + - cron: '0 0 * * * ' # At the end of everyday workflow_dispatch: # Or manually from GitHub UI jobs: @@ -59,4 +59,4 @@ jobs: env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} with: - filename: ./Audit-Results.md \ No newline at end of file + filename: ./Audit-Results.md