From 6b5f2188905db18182b7db59cae336c737d7e952 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Sun, 1 Mar 2026 07:32:42 +0000 Subject: [PATCH 1/2] Initial plan From f879c0b6e30ee7ec6f9ae721bf9c62bfcdde2056 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Sun, 1 Mar 2026 07:39:54 +0000 Subject: [PATCH 2/2] Fix CI error: correct flow reference in CRM example action Action 'convert_lead' referenced 'lead_conversion_flow' but the flow is named 'lead_conversion'. Updated target to match the actual flow name. Co-authored-by: hotlong <50353452+hotlong@users.noreply.github.com> --- examples/app-crm/src/actions/lead.actions.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/app-crm/src/actions/lead.actions.ts b/examples/app-crm/src/actions/lead.actions.ts index e1d4887663..b1b09e8d3e 100644 --- a/examples/app-crm/src/actions/lead.actions.ts +++ b/examples/app-crm/src/actions/lead.actions.ts @@ -8,7 +8,7 @@ export const ConvertLeadAction: Action = { label: 'Convert Lead', icon: 'arrow-right-circle', type: 'flow', - target: 'lead_conversion_flow', + target: 'lead_conversion', locations: ['record_header', 'list_item'], visible: 'status = "qualified" AND is_converted = false', confirmText: 'Are you sure you want to convert this lead?',