From df11bc1583f81337071950c0c6838797a5878e2f Mon Sep 17 00:00:00 2001 From: Carsten Schnober Date: Fri, 19 Apr 2024 11:09:46 +0200 Subject: [PATCH 1/6] Add .mlc-config.json --- .mlc-config.json | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 .mlc-config.json diff --git a/.mlc-config.json b/.mlc-config.json new file mode 100644 index 0000000..525329d --- /dev/null +++ b/.mlc-config.json @@ -0,0 +1,8 @@ +{ + "projectBaseUrl":"${workspaceFolder}", + "timeout": "20s", + "retryOn429": true, + "retryCount": 5, + "fallbackRetryDelay": "30s", + "aliveStatusCodes": [200, 206] +} From 9650e1ed123205ed8367edd2b42836b58b21ab6b Mon Sep 17 00:00:00 2001 From: Carsten Schnober Date: Fri, 19 Apr 2024 11:15:44 +0200 Subject: [PATCH 2/6] Update markdown-link-check to v3. --- .github/workflows/markdown-link-check.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/markdown-link-check.yml b/.github/workflows/markdown-link-check.yml index 04a60dc..8fde760 100644 --- a/.github/workflows/markdown-link-check.yml +++ b/.github/workflows/markdown-link-check.yml @@ -7,4 +7,4 @@ jobs: runs-on: ubuntu-latest steps: - uses: actions/checkout@master - - uses: gaurav-nelson/github-action-markdown-link-check@v1 + - uses: gaurav-nelson/github-action-markdown-link-check@v3 From d4584188951ea51a07532f60228bf8f07c14eff2 Mon Sep 17 00:00:00 2001 From: Carsten Schnober Date: Fri, 19 Apr 2024 11:16:15 +0200 Subject: [PATCH 3/6] Rename mlc-config.json. --- .mlc-config.json => mlc-config.json | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename .mlc-config.json => mlc-config.json (100%) diff --git a/.mlc-config.json b/mlc-config.json similarity index 100% rename from .mlc-config.json rename to mlc-config.json From 45c09f7c575b57e46feb174697f18b253f79eb13 Mon Sep 17 00:00:00 2001 From: Carsten Schnober Date: Fri, 19 Apr 2024 11:17:36 +0200 Subject: [PATCH 4/6] Revert "Update markdown-link-check to v3." This reverts commit 9650e1ed123205ed8367edd2b42836b58b21ab6b. --- .github/workflows/markdown-link-check.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/markdown-link-check.yml b/.github/workflows/markdown-link-check.yml index 8fde760..04a60dc 100644 --- a/.github/workflows/markdown-link-check.yml +++ b/.github/workflows/markdown-link-check.yml @@ -7,4 +7,4 @@ jobs: runs-on: ubuntu-latest steps: - uses: actions/checkout@master - - uses: gaurav-nelson/github-action-markdown-link-check@v3 + - uses: gaurav-nelson/github-action-markdown-link-check@v1 From 9730b5c9e6b0c7dd7ba845260c8e9e7726e65048 Mon Sep 17 00:00:00 2001 From: Carsten Schnober Date: Fri, 19 Apr 2024 11:18:31 +0200 Subject: [PATCH 5/6] Rename mlc_config.json. --- mlc-config.json => mlc_config.json | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename mlc-config.json => mlc_config.json (100%) diff --git a/mlc-config.json b/mlc_config.json similarity index 100% rename from mlc-config.json rename to mlc_config.json From 2f92535f8027148974e1d6e858926e6eecf12e7f Mon Sep 17 00:00:00 2001 From: Carsten Schnober Date: Fri, 19 Apr 2024 11:27:56 +0200 Subject: [PATCH 6/6] Ignore esciencecenter team and fellowship pages. --- mlc_config.json | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/mlc_config.json b/mlc_config.json index 525329d..fc16939 100644 --- a/mlc_config.json +++ b/mlc_config.json @@ -1,5 +1,13 @@ { "projectBaseUrl":"${workspaceFolder}", + "ignorePatterns": [ + { + "pattern": "^https://www.esciencecenter.nl/team/.*/$" + }, + { + "pattern": "^https://www.esciencecenter.nl/fellowship-programme.*/" + } + ], "timeout": "20s", "retryOn429": true, "retryCount": 5,