pub struct FlowInfo {
pub config: Config,
pub task: String,
pub env_info: EnvInfo,
pub disable_workspace: bool,
pub disable_on_error: bool,
pub allow_private: bool,
pub skip_init_end_tasks: bool,
pub skip_tasks_pattern: Option<Regex>,
pub cli_arguments: Option<Vec<String>>,
}
Expand description
Holds flow information
Fields§
§config: Config
The flow config object
task: String
The main task of the flow
env_info: EnvInfo
The env info
disable_workspace: bool
Prevent workspace support
disable_on_error: bool
Prevent on error flow even if defined in config section
allow_private: bool
Allow invocation of private tasks
skip_init_end_tasks: bool
If true, the init and end tasks are skipped
skip_tasks_pattern: Option<Regex>
Skip tasks that match the provided pattern
cli_arguments: Option<Vec<String>>
additional command line arguments