Add command to backfill next step id on version and run steps (#11579)

- add next step id on step
- backfill next step id on step, except for the last one
- backfill flow for workflow run, when it exists

---------

Co-authored-by: greptile-apps[bot] <165735046+greptile-apps[bot]@users.noreply.github.com>
This commit is contained in:
Thomas Trompette
2025-04-15 17:26:58 +02:00
committed by GitHub
parent d3922a7f5b
commit c40baf036c
4 changed files with 133 additions and 1 deletions

View File

@ -25,6 +25,7 @@ type BaseWorkflowAction = {
type: WorkflowActionType;
settings: WorkflowActionSettings;
valid: boolean;
nextStepIds?: string[];
};
export type WorkflowCodeAction = BaseWorkflowAction & {