From 5bf9ef3aa6acb1c656db1ae1df5d563bc2452a0d Mon Sep 17 00:00:00 2001 From: Hugo Locurcio Date: Fri, 28 Mar 2025 15:43:02 +0100 Subject: [PATCH] CI: Check URLs on schedule only to reduce false positives Links occasionally fail due to network issues or other transient problems. This should not cause pull requests to fail checks. The check is now performed weekly at a random-looking time on Fridays (when server load isn't too high). --- .github/workflows/check_urls.yml | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/.github/workflows/check_urls.yml b/.github/workflows/check_urls.yml index 7d0c968a9..26ece3c47 100644 --- a/.github/workflows/check_urls.yml +++ b/.github/workflows/check_urls.yml @@ -1,12 +1,10 @@ name: 🌐 Check URLs on: - push: - pull_request: schedule: - # Every day at 18:00 UTC. + # Every Friday at 16:27 UTC. # URLs can decay over time. Setting up a schedule makes it possible to be warned # about dead links as soon as possible. - - cron: "0 18 * * *" + - cron: "27 16 * * FRI" jobs: check-urls: