Skip to content

Fix flow reference mismatch in CRM example action - #835

Merged
hotlong merged 2 commits into
mainfrom
copilot/fix-ci-errors-yet-again
Mar 1, 2026
Merged

Fix flow reference mismatch in CRM example action#835
hotlong merged 2 commits into
mainfrom
copilot/fix-ci-errors-yet-again

Conversation

CopilotAI commented Mar 1, 2026

Copy link
Copy Markdown
Contributor

CI build fails because convert_lead action references flow lead_conversion_flow, but the flow is named lead_conversion.

- target: 'lead_conversion_flow',+ target: 'lead_conversion',

Cross-reference validation in objectstack compile catches this during the examples/app-crm build step.

Original prompt

fix all ci errors


🔒 GitHub Advanced Security automatically protects Copilot coding agent pull requests. You can protect all pull requests by enabling Advanced Security for your repositories. Learn more about Advanced Security.

@vercel

vercelBot commented Mar 1, 2026

Copy link
Copy Markdown

The latest updates on your projects. Learn more about Vercel for GitHub.

ProjectDeploymentActionsUpdated (UTC)
objectstack-playReadyReadyPreview, CommentMar 1, 2026 7:43am
specReadyReadyPreview, CommentMar 1, 2026 7:43am

Request Review

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>
CopilotAI changed the title [WIP] Fix all CI errorsFix flow reference mismatch in CRM example actionMar 1, 2026
@hotlong
hotlong marked this pull request as ready for review March 1, 2026 07:47
CopilotAI review requested due to automatic review settings March 1, 2026 07:47
@hotlong
hotlong merged commit 4216408 into mainMar 1, 2026
4 checks passed

CopilotAI left a comment

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Pull request overview

This PR fixes a broken cross-reference in the CRM example app that was causing CI failures during the objectstack compile step. The convert_lead action was referencing a flow named lead_conversion_flow, but the actual flow defined in the project is named lead_conversion. The fix aligns the action's target field with the correct flow name.

Changes:

  • Corrected the target field in ConvertLeadAction from 'lead_conversion_flow' to 'lead_conversion' to match the actual flow name defined in the CRM example.

Sign up for freeto join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

3 participants

@hotlong