From 27df0557579e683a430539e6d7a6f796091238c1 Mon Sep 17 00:00:00 2001 From: Sam Cunliffe Date: Tue, 1 Oct 2024 08:16:39 +0100 Subject: [PATCH 1/3] Link checker is timing out at gnu.org. Propose to exclude it as this is not the first time we've encountered this. --- .github/workflows/links.yml | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/.github/workflows/links.yml b/.github/workflows/links.yml index 488e69e9..92c9e8b8 100644 --- a/.github/workflows/links.yml +++ b/.github/workflows/links.yml @@ -23,11 +23,14 @@ jobs: with: # Exclude the image.sc forum (which works) but returns 403 from # github runners and exclude relative links to other pages. Ignore - # the whole of the project slug README since the links are + # http://www.gnu.org because it's often down but is still the right + # website to link to! + # + # Ignore the whole of the project slug README since the links are # necessarily not real links - i.e. demos and to be filled by # cookiecutter values. args: - "--verbose --exclude https://forum.image.sc/ --exclude docs/pages + "--verbose --exclude https://forum.image.sc/ --exclude http://www.gnu.org --exclude docs/pages --exclude-path '{{cookiecutter.project_slug}}/README.md' -- ." fail: true jobSummary: true From bdb633664d604712a416fe608c26d3cc8d6981e2 Mon Sep 17 00:00:00 2001 From: Sam Cunliffe Date: Tue, 1 Oct 2024 08:23:59 +0100 Subject: [PATCH 2/3] Okay. FSF too. --- .github/workflows/links.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/links.yml b/.github/workflows/links.yml index 2ce153a9..2b5da28d 100644 --- a/.github/workflows/links.yml +++ b/.github/workflows/links.yml @@ -23,14 +23,14 @@ jobs: with: # Exclude the image.sc forum (which works) but returns 403 from # github runners and exclude relative links to other pages. Ignore - # http://www.gnu.org because it's often down but is still the right - # website to link to! - # + # gnu.org and fsf.org because they're often down but are still the right + # websites to link to! + # # Ignore the whole of the project slug README since the links are # necessarily not real links - i.e. demos and to be filled by # cookiecutter values. args: - "--verbose --exclude https://forum.image.sc/ --exclude http://www.gnu.org --exclude docs/pages + "--verbose --exclude https://forum.image.sc/ --exclude http://www.gnu.org --exclude http://www.fsf.org --exclude docs/pages --exclude-path '{{cookiecutter.project_slug}}/README.md' -- ." fail: true jobSummary: true From b35e940978b490033f886b335572e9e9250f1529 Mon Sep 17 00:00:00 2001 From: Sam Cunliffe Date: Tue, 1 Oct 2024 08:28:31 +0100 Subject: [PATCH 3/3] . --- .github/workflows/links.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/links.yml b/.github/workflows/links.yml index 2b5da28d..d9334c4a 100644 --- a/.github/workflows/links.yml +++ b/.github/workflows/links.yml @@ -30,7 +30,7 @@ jobs: # necessarily not real links - i.e. demos and to be filled by # cookiecutter values. args: - "--verbose --exclude https://forum.image.sc/ --exclude http://www.gnu.org --exclude http://www.fsf.org --exclude docs/pages + "--verbose --exclude https://forum.image.sc/ --exclude http://www.gnu.org --exclude http://fsf.org --exclude docs/pages --exclude-path '{{cookiecutter.project_slug}}/README.md' -- ." fail: true jobSummary: true