I wish I could do something like this:
def task_1():
return {"actions": ["echo b"]}
def task_2():
return {"actions": ["echo a", "task_1", "echo c"]}
In the documentation, I can find about Python actions where you reference an action (but not a task) as a function, and task dependencies, where you can reference tasks by name, but you can't intertwine them with other actions.
But I can't find a way to just say "this task is just calling previously defined tasks, referencing them by name".