From 8bd4d1fd32ad96160209717a8eac774d776ed392 Mon Sep 17 00:00:00 2001 From: Scott Lahteine Date: Tue, 16 Apr 2024 15:05:11 -0500 Subject: [PATCH] *** TESTING ONLY *** --- .github/workflows/check-urls.yml | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/.github/workflows/check-urls.yml b/.github/workflows/check-urls.yml index 051cffde04ff..e97f54e7947a 100644 --- a/.github/workflows/check-urls.yml +++ b/.github/workflows/check-urls.yml @@ -6,8 +6,9 @@ name: Check URLs on: - schedule: - - cron: '0 4 * * 2' # Tues 4:00 AM UTC + pull_request: + branches: + - bugfix-2.1.x jobs: check_urls: @@ -35,6 +36,7 @@ jobs: run: | UA="Mozilla/5.0 (Linux; Android 10; SM-G996U Build/QP1A.190711.020; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Mobile Safari/537.36" UTMP=$(mktemp) + echo "[debug 1] UTMP = ${UTMP}" grep -R -E "https?:\/\/[^ \"''\(\)\<\>]+" . 2>/dev/null \ | grep -vE "Binary file" \ | sed -E "s/\/https?:\/\//\//" \ @@ -48,6 +50,7 @@ jobs: | sort -u -R \ >"$UTMP" + echo "[debug 2] link count = $(wc -l $UTMP)" ISERR= declare -a BADURLS while IFS= read -r URL @@ -76,6 +79,7 @@ jobs: fi done <"$UTMP" + echo "[debug 3]" if [[ -n $ISERR ]]; then # Join bad URLs into a bulleted markdown list printf -v BADSTR -- "- %s\n" "${BADURLS[@]}" @@ -83,6 +87,8 @@ jobs: echo -e "\n$BODY" #gh issue comment 26975 --repo $GITHUB_REPOSITORY --body "${BODY}" exit 1 + else + gh issue comment 26975 --body "Comment generated by action." fi echo -e "\nURL Check Passed."