From f2a19047d01e49342cad69ea73bae9901a0d85f6 Mon Sep 17 00:00:00 2001 From: Max Wolfs Date: Wed, 6 Dec 2023 11:13:11 +0100 Subject: [PATCH] run link validator daily (#399) Signed-off-by: Max Wolfs --- .github/workflows/link-validator.yml | 13 ++++++++++++- 1 file changed, 12 insertions(+), 1 deletion(-) diff --git a/.github/workflows/link-validator.yml b/.github/workflows/link-validator.yml index c8508c151..be5f45a7c 100644 --- a/.github/workflows/link-validator.yml +++ b/.github/workflows/link-validator.yml @@ -1,5 +1,16 @@ -on: [pull_request] name: Check links for modified files + +on: + workflow_dispatch: + schedule: + - cron: "0 0 * * *" + push: + branches: + - main + pull_request: # Add this section + branches: + - main + jobs: markdown-link-check: runs-on: ubuntu-latest