From 74855daa2d2b32b6c707c50cab7d9d0e51ea706c Mon Sep 17 00:00:00 2001 From: Karl Johan Grahn Date: Wed, 29 Jan 2025 00:05:41 +0100 Subject: [PATCH 1/2] update --- .github/workflows/pull_request_doc_qa.yaml | 17 +++++++++++------ 1 file changed, 11 insertions(+), 6 deletions(-) diff --git a/.github/workflows/pull_request_doc_qa.yaml b/.github/workflows/pull_request_doc_qa.yaml index 9155b4e..1028f5f 100644 --- a/.github/workflows/pull_request_doc_qa.yaml +++ b/.github/workflows/pull_request_doc_qa.yaml @@ -23,13 +23,18 @@ jobs: - uses: actions/checkout@v4 with: ref: ${{github.event.pull_request.head.sha}} - - name: Link check - uses: gaurav-nelson/github-action-markdown-link-check@v1 + - name: Link checking with retries + uses: Wandalen/wretry.action@v3 with: - config-file: ${{inputs.MD_CONFIG}} - use-quiet-mode: 'yes' - use-verbose-mode: 'yes' - max-depth: 3 + action: gaurav-nelson/github-action-markdown-link-check@v1 + retry_condition: steps._this.conclusion == 'failure' + attempt_limit: 2 + attempt_delay: 0 + with: | + config-file: ${{inputs.MD_CONFIG}} + use-quiet-mode: 'yes' + use-verbose-mode: 'yes' + max-depth: 3 spell_check: runs-on: ubuntu-latest From c6996230db1ce6417299507ca23cf52531a1604d Mon Sep 17 00:00:00 2001 From: Karl Johan Grahn Date: Thu, 30 Jan 2025 08:24:19 +0100 Subject: [PATCH 2/2] update --- .github/workflows/pull_request_doc_qa.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pull_request_doc_qa.yaml b/.github/workflows/pull_request_doc_qa.yaml index 5c37582..b07b04d 100644 --- a/.github/workflows/pull_request_doc_qa.yaml +++ b/.github/workflows/pull_request_doc_qa.yaml @@ -29,7 +29,7 @@ jobs: action: gaurav-nelson/github-action-markdown-link-check@v1 retry_condition: steps._this.conclusion == 'failure' attempt_limit: 2 - attempt_delay: 0 + attempt_delay: 60000 with: | config-file: ${{inputs.MD_CONFIG}} use-quiet-mode: 'yes'