diff --git a/.github/workflows/check-urls.yml b/.github/workflows/check-urls.yml index 968f77bf9b43..ec1ccf4a8945 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 -v "Binary file" \ | sed -E "s/\/https?:\/\//\//" \ @@ -47,6 +49,7 @@ jobs: | sort -u -R \ >"$UTMP" + echo "[debug 2] link count = $(wc -l $UTMP)" ISERR= declare -a BADURLS while IFS= read -r URL @@ -75,6 +78,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[@]}" @@ -82,6 +86,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."