feat(workflow): add WorkflowRunnerService for event-driven workflow firing#29
Open
mpge wants to merge 1 commit intofeat/workflow-executorfrom
Open
feat(workflow): add WorkflowRunnerService for event-driven workflow firing#29mpge wants to merge 1 commit intofeat/workflow-executorfrom
mpge wants to merge 1 commit intofeat/workflow-executorfrom
Conversation
…iring Ports the NestJS workflow-runner.service.ts to WordPress. Loads active Workflows for a trigger event (in position order via SQL), evaluates conditions via WorkflowEngine, dispatches matches to WorkflowExecutorService, and writes a workflow_log audit row per Workflow considered. - Honors stop_on_match (only when the workflow actually matches) - Catches executor failures so one bad workflow never blocks the rest (failure stamped on the log row via error_message; warn-logged when WP_DEBUG is on) - Null/blank conditions match all tickets (matches NestJS semantics) Follow-up PR will add the WP hook handlers that bridge escalated_ticket_created / _replied / etc. into run_for_event.
2 tasks
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Ports the NestJS
workflow-runner.service.tsto WordPress. Loads active Workflows for a trigger event (inpositionorder via SQL), evaluates conditions viaWorkflowEngine, dispatches matches toWorkflowExecutorService, and writes aworkflow_logaudit row per Workflow considered.Behavior
stop_on_match— but only when the workflow actually matches (failing workflows don't halt the chain)WP_DEBUGis on)Scope
Runner only. Follow-up PR: WP hooks that bridge
escalated_ticket_created/_replied/ etc. intorun_for_event.Dependencies
feat/workflow-executor). Will rebase ontomainonce feat(workflow): add WorkflowExecutorService for action dispatch #28 merges.Test plan
test (8.1),test (8.2),lint(won't trigger against stacked base until rebased)