From 64319ee7d0d379ecbf028d68900c54172cf0eb0a Mon Sep 17 00:00:00 2001 From: Derrick Hammer Date: Sun, 11 Feb 2024 04:26:08 -0500 Subject: [PATCH] fix: add missing call to webhook manager --- api/routes_webhooks.go | 1 + 1 file changed, 1 insertion(+) diff --git a/api/routes_webhooks.go b/api/routes_webhooks.go index 571a310..dd3d225 100644 --- a/api/routes_webhooks.go +++ b/api/routes_webhooks.go @@ -31,6 +31,7 @@ func (a *webhookApi) handlePullRequest(w http.ResponseWriter, r *http.Request) { return } + a.whm.HandlePullRequest(payload, r) } func setupWebhookRoutes(params RouteParams) {