curl -X POST https://signals.codewolf.app/{signalKey} \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"type": "deployment",
"repository": "${{ github.repository }}",
"service": "api-service",
"version": "${{ github.sha }}",
"sha": "${{ github.sha }}",
"environment": "production",
"triggeredBy": "${{ github.actor }}",
"status": "success",
"timestamp": "'$(date -u +%Y-%m-%dT%H:%M:%SZ)'",
"metadata": {
"workflow": "${{ github.workflow }}",
"runId": "${{ github.run_id }}",
"runNumber": "${{ github.run_number }}"
}
}'