A Flow is stuck in Waiting although the actions are completedIssue A Flow is stuck in state Waiting but the flow execution doesn't show a step waiting, only complete and not runCauseYou need to review the design of the Flow and check if you use any if-statements. A common reason is that a value is the output of a step which isn't always executed because the if-condition isn't met. So if at a later stage you use an action which depends on an input of an earlier action which didn't run, the Flow gets stuck in a Waiting stage. ResolutionNeed to redesign Flow and ensure there's a valid value for action 'wait for stage'.