From c3b995fb6b9294934539660e4ee49d7926868ec7 Mon Sep 17 00:00:00 2001 From: westey <164392973+westey-m@users.noreply.github.com> Date: Fri, 3 Oct 2025 14:11:19 +0100 Subject: [PATCH] Change MD linkchecker to only run when md files are changed in a PR and to run nightly (#1148) * Ignore null, timeout, status codes * Only run when a markdown file is changed and run nightly * Add markdown change * Add run on link checker change and arbitrary change --- .github/workflows/markdown-link-check.yml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.github/workflows/markdown-link-check.yml b/.github/workflows/markdown-link-check.yml index 22270a8377..3b015fc6af 100644 --- a/.github/workflows/markdown-link-check.yml +++ b/.github/workflows/markdown-link-check.yml @@ -4,6 +4,12 @@ on: workflow_dispatch: pull_request: branches: ["main"] + paths: + - '**.md' + - '.github/workflows/markdown-link-check.yml' + - '.github/.linkspector.yml' + schedule: + - cron: "0 0 * * *" # Run at midnight UTC daily permissions: contents: read