diff --git a/.github/workflows/webhook-caller.yml b/.github/workflows/webhook-caller.yml index 5bf6a24..5ba7468 100644 --- a/.github/workflows/webhook-caller.yml +++ b/.github/workflows/webhook-caller.yml @@ -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