get_files_in_topological_order

Returns the list of files in the topological order based on the dependency graph.

Arguments

NameTypeDescriptionRequired

top_down

boolean

Whether to return the topological order from top-down (default is bottom-up).

Returns

TypeDescription

array

A list of file paths in the topological order.

Example

- name: get_files_in_topological_order
  arguments:
    top_down: true/false
  returns:
    - <file-paths-level-1>
    - <file-paths-level-2>

Last updated