From 7d79c885904b3f12a44c84bc9b9345acf011f2ac Mon Sep 17 00:00:00 2001 From: Jover Lee Date: Wed, 20 May 2026 10:09:39 -0700 Subject: [PATCH] .github/docs: Only run linkcheck on scheduled runs Reduce noise from false positive linkchecks by only running linkcheck for the scheduled workflow runs. --- .github/workflows/ci.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 45797e5..ef0718d 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -20,3 +20,4 @@ jobs: environment-file: conda.yml docs-directory: . make-target: html + run-linkcheck: ${{ github.event_name == 'schedule' }}