From 9e31feb924916dde4fe239354f46185acc340b80 Mon Sep 17 00:00:00 2001 From: Ellpeck Date: Sat, 26 Oct 2024 13:19:27 +0200 Subject: [PATCH] retry the link checker a few times --- .github/workflows/checks.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/checks.yml b/.github/workflows/checks.yml index 023959a..3d12322 100644 --- a/.github/workflows/checks.yml +++ b/.github/workflows/checks.yml @@ -12,6 +12,7 @@ jobs: subfolder: docs/articles file_types: .md,.yml verbose: true + retry_count: 3 - name: Check Blog Links uses: urlstechie/urlchecker-action@master if: always() @@ -19,9 +20,11 @@ jobs: subfolder: web/_posts file_types: .md verbose: true + retry_count: 3 - name: Check Changelog Links uses: urlstechie/urlchecker-action@master if: always() with: include_files: Changelog.md verbose: true + retry_count: 3