diff --git a/app/api/webhook/route.ts b/app/api/webhook/route.ts index 435af7e..6fc4c85 100644 --- a/app/api/webhook/route.ts +++ b/app/api/webhook/route.ts @@ -555,8 +555,8 @@ async function handleIssueCommentCreated({ octokit, payload }: any) { // Register event listeners app.webhooks.on("pull_request.opened", handlePullRequestOpened); -app.webhooks.on("issues.opened", handleIssueOpened); -app.webhooks.on("issue_comment.created", handleIssueCommentCreated); +// app.webhooks.on("issues.opened", handleIssueOpened); +// app.webhooks.on("issue_comment.created", handleIssueCommentCreated); export async function POST(request: NextRequest) { try {