Hello community. I need your help again. I would like to execute a custom action at the end of another custom action from the actions.py file. I tried with the “ActionExecuted” event this way:
events = [ActionExecuted(“action_save”)] return events
But it didn’t work. Does anyone have a solution for me?
@Dipanda
Did you try Followup action ?
return [ FollowupAction("action_to_be_called") ]
I tried this but it doesn’t work
did you find a solution for this?