From 52562b10d77835d9aaca260c9daa3239fb0a0516 Mon Sep 17 00:00:00 2001 From: Aaron Powell Date: Fri, 11 Jul 2025 11:51:17 +1000 Subject: [PATCH] Update .github/workflows/webhook-caller.yml Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> --- .github/workflows/webhook-caller.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/webhook-caller.yml b/.github/workflows/webhook-caller.yml index 6d97f3f..45f1d08 100644 --- a/.github/workflows/webhook-caller.yml +++ b/.github/workflows/webhook-caller.yml @@ -31,7 +31,7 @@ jobs: idx=1 for url in "${URLS[@]}"; do if [[ "$url" =~ ^https:// ]]; then - if ! curl -f --max-time 30 --retry 3 -X POST "$url"; then + if ! curl -f --max-time 30 --retry 3 --silent --show-error -X POST -H "User-Agent: webhook-caller" -H "Content-Type: application/json" "$url"; then echo "Webhook call failed for URL '$url' at index $idx" >&2 fi else