Manage task dependencies and subtasks to create complex workflows.
depends_on
parameter when creating a task.
analyze_sources
will not start until gather_sources
has completed successfully.
depends_on
parameterwrite_report
will automatically trigger the execution of analyze_sources
, which in turn will trigger gather_sources
. You don’t need to explicitly run or return gather_sources
or analyze_sources
.
To learn more, see running tasks.