flowey_lib_common/
git_merge_commit.rsuse flowey::node::prelude::*;
flowey_request! {
pub struct Request {
pub repo_path: ReadVar<PathBuf>,
pub merge_commit: WriteVar<String>,
pub base_branch: String,
}
}
new_simple_flow_node!(struct Node);
impl SimpleFlowNode for Node {
type Request = Request;
fn imports(ctx: &mut ImportCtx<'_>) {
ctx.import::<crate::install_git::Node>();
}
fn process_request(request: Self::Request, ctx: &mut NodeCtx<'_>) -> anyhow::Result<()> {
let Request {
repo_path,
merge_commit,
base_branch,
} = request;
ctx.emit_rust_step("get merge commit", move |ctx| {
let merge_commit = merge_commit.claim(ctx);
let repo_path = repo_path.claim(ctx);
move |rt| {
let sh = xshell::Shell::new()?;
let repo_path = rt.read(repo_path);
sh.change_dir(repo_path);
xshell::cmd!(sh, "git fetch --unshallow").run()?;
xshell::cmd!(sh, "git fetch origin {base_branch}").run()?;
let commit = xshell::cmd!(sh, "git merge-base HEAD origin/{base_branch}").read()?;
rt.write(merge_commit, &commit);
Ok(())
}
});
Ok(())
}
}