diff --git a/src/router/index.ts b/src/router/index.ts index 4e593e2c..712110df 100644 --- a/src/router/index.ts +++ b/src/router/index.ts @@ -124,7 +124,8 @@ function parseTrelloWebhook(payload: unknown): TrelloWebhookResult { const shouldProcess = isCardInTriggerList(actionType, data, project) || isReadyToProcessLabelAdded(actionType, data, project) || - isAgentLogAttachmentUploaded(actionType, data, project); + isAgentLogAttachmentUploaded(actionType, data, project) || + actionType === 'commentCard'; return { shouldProcess, project, actionType, cardId }; }