From 6cdbe3c6182c813cc1d81f14f712b6f03fd09d0a Mon Sep 17 00:00:00 2001 From: Steven Masley Date: Fri, 29 May 2026 15:41:25 +0000 Subject: [PATCH] ci: trigger check-docs on changes to its own workflow file The job's PR trigger only watched docs/** before, so workflow-only changes (like the previous puppeteer fix in this PR) skipped the check-docs run on the PR that introduced them. Add the workflow file itself to the path filter so future workflow edits are verified against link-check behavior before merge. --- .github/workflows/weekly-docs.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/weekly-docs.yaml b/.github/workflows/weekly-docs.yaml index ec6d09b831..855165ba44 100644 --- a/.github/workflows/weekly-docs.yaml +++ b/.github/workflows/weekly-docs.yaml @@ -9,6 +9,7 @@ on: - main paths: - "docs/**" + - ".github/workflows/weekly-docs.yaml" permissions: contents: read