Update .github/workflows/webhook-caller.yml

Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
This commit is contained in:
Aaron Powell 2025-07-11 11:50:47 +10:00 committed by GitHub
parent 864ae299cc
commit 7e60fcdbb8
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -32,7 +32,7 @@ jobs:
for url in "${URLS[@]}"; do
if [[ "$url" =~ ^https:// ]]; then
if ! curl -f --max-time 30 --retry 3 -X POST "$url"; then
echo "Webhook call failed on url at index $idx" >&2
echo "Webhook call failed for URL '$url' at index $idx" >&2
fi
else
echo "Skipping invalid webhook URL (must start with https://): failed on url at index $idx" >&2