pub async fn handle_webhook(
__arg0: State<AppState>,
__arg1: VerifiedWebhookPayload,
) -> ApiResult<impl IntoResponse>Expand description
Webhook handler for GitHub events
This handler:
- Verifies HMAC signature (handled by VerifiedWebhook extractor)
- Parses the event payload
- Processes pull_request, issue_comment, and pull_request_review events
- Returns 200 OK immediately (async LLM processing happens in background)