Actions
Refactor #9508
closedBetter support for triggering sub plans from run phase and waiting for them to finish
Description
Sometimes, it's better to extract a part of the execution plan to a separate task.
The usecases are:
1. some information required in plan phase not available when the whole task starts
2. other logic in the system requiring the action to be represented as separate task (such as repository syncing)
3. bulk actions
We already have the logic in place for bulk action. Let's extract that to some common parent action
so that others can benefit from that as well
Actions