From cac04f15ad44a0e4033a78a2c1885951c59f86f5 Mon Sep 17 00:00:00 2001 From: ehsanKey Date: Sun, 12 Jul 2026 18:53:15 +0330 Subject: [PATCH] fix(webhooks): add skipRepositoryCheck to projects_v2_item handler --- src/lib/github/webhooks/index.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lib/github/webhooks/index.ts b/src/lib/github/webhooks/index.ts index ef27563..accf929 100644 --- a/src/lib/github/webhooks/index.ts +++ b/src/lib/github/webhooks/index.ts @@ -23,4 +23,4 @@ webhooks.on("repository.created", withGuards(repositoryCreatedCallback)); webhooks.on("star.created", withGuards(starCreatedCallback)); webhooks.on("issue_comment.created", withGuards(commentCreatedCallback)); webhooks.on("pull_request_review_comment.created", withGuards(commentCreatedCallback)); -webhooks.on("projects_v2_item.edited", withGuards(projectItemEditedCallback)); +webhooks.on("projects_v2_item.edited", withGuards(projectItemEditedCallback, { skipRepositoryCheck: true }));