Skip to content

Commit 864ae29

Browse files
committed
Cleaning up log message
1 parent b8b3d2e commit 864ae29

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/webhook-caller.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,10 +32,10 @@ jobs:
3232
for url in "${URLS[@]}"; do
3333
if [[ "$url" =~ ^https:// ]]; then
3434
if ! curl -f --max-time 30 --retry 3 -X POST "$url"; then
35-
echo "Webhook call failed on url $idx" >&2
35+
echo "Webhook call failed on url at index $idx" >&2
3636
fi
3737
else
38-
echo "Skipping invalid webhook URL (must start with https://): failed on url $idx" >&2
38+
echo "Skipping invalid webhook URL (must start with https://): failed on url at index $idx" >&2
3939
fi
4040
idx=$((idx+1))
4141
done

0 commit comments

Comments
 (0)