From 7d09c51b6f7a74c6775337e2c93897522d3f7834 Mon Sep 17 00:00:00 2001 From: Jeffrey Hanson Date: Tue, 20 Aug 2024 10:46:21 +1200 Subject: [PATCH] skip laggy urls in docs ci --- .github/workflows/documentation.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/documentation.yaml b/.github/workflows/documentation.yaml index fa24ee2..bce5a20 100644 --- a/.github/workflows/documentation.yaml +++ b/.github/workflows/documentation.yaml @@ -93,6 +93,9 @@ jobs: run: | result <- urlchecker::url_check() result <- result[!startsWith(result$URL, "https://doi.org/"), , drop = FALSE] + result <- result[!startsWith(result$URL, "https://land.copernicus.eu"), , drop = FALSE] + result <- result[!startsWith(result$URL, "https://www.iucnredlist.org"), , drop = FALSE] + result <- result[!startsWith(result$URL, "https://lpdaac.usgs.gov"), , drop = FALSE] if (nrow(result) > 0) { print(result) stop("Invalid URLs detected")