From d740f872fabb5c64593ceb688a39edef9ea1e3fc Mon Sep 17 00:00:00 2001 From: Alex Gaynor Date: Thu, 22 Feb 2024 19:50:18 -0500 Subject: [PATCH] Stop running linkcheck on every push - its pointless --- .github/workflows/linkcheck.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/linkcheck.yml b/.github/workflows/linkcheck.yml index 9f694c7cb661..0e5b688c051f 100644 --- a/.github/workflows/linkcheck.yml +++ b/.github/workflows/linkcheck.yml @@ -4,9 +4,9 @@ on: paths: - docs/conf.py - .github/workflows/linkcheck.yml - push: - branches: - - main + schedule: + # Run once a week on Fridays + - cron: "0 0 * * FRI" permissions: contents: read