common_ci_rust/
ci.rs

1#[allow(dead_code)]
2pub fn get_safe_branch_name(branch_name: String) -> String {
3    return branch_name.replace("/", "-").replace("_", "-").replace(".", "-").to_lowercase()
4}