From 8728cce3e7dec02958b416d99d0f161d83271f6a Mon Sep 17 00:00:00 2001 From: Stefan Haun Date: Fri, 26 Jul 2024 09:53:19 +0200 Subject: [PATCH 1/2] Change check interval to weekly --- .github/workflows/link-checker.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/link-checker.yml b/.github/workflows/link-checker.yml index 6c0f69e..afca092 100644 --- a/.github/workflows/link-checker.yml +++ b/.github/workflows/link-checker.yml @@ -4,7 +4,7 @@ on: repository_dispatch: workflow_dispatch: schedule: - - cron: "00 18 * * *" + - cron: "0 6 * * 5" jobs: linkChecker: From 63cb21cd68ad388d82beb6a6e34b934067aa5718 Mon Sep 17 00:00:00 2001 From: Stefan Haun Date: Fri, 26 Jul 2024 09:55:26 +0200 Subject: [PATCH 2/2] Exclude patreon from link checking --- .github/workflows/link-checker.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/link-checker.yml b/.github/workflows/link-checker.yml index afca092..491f7e8 100644 --- a/.github/workflows/link-checker.yml +++ b/.github/workflows/link-checker.yml @@ -16,7 +16,7 @@ jobs: id: lychee uses: lycheeverse/lychee-action@v1.8.0 with: - args: --verbose https://www.mopsy-music.de + args: --verbose https://www.mopsy-music.de --exclude "https://www.patreon.com/penguineer" - name: Create Issue From File if: env.lychee_exit_code != 0