diff --git a/.github/workflows/check-urls.yml b/.github/workflows/check-urls.yml index 32e536143e54..b27153edebb1 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}" echo "Gathering URLs. Please wait..." grep -R -E "https?:\/\/[^ \"''\(\)\<\>]+" . 2>/dev/null \ | grep -v "Binary file" \ @@ -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 @@ -83,6 +86,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[@]}" @@ -90,6 +94,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."