pub fn resolve_variables(
template: &str,
overrides: &BTreeMap<String, String>,
workflow_defaults: &BTreeMap<String, String>,
store_vars: &BTreeMap<String, String>,
) -> StringExpand description
Resolve all {{var}} placeholders in a template string.
Resolution order:
overrides(CLI –var flags)workflow_defaults(from workflow’s variables section)store_vars(global + active profile from VariableStore)- Environment variables
Unresolved variables are left as-is (with a warning to stderr).