feat(pr_handler): Create PR title and description generation rules #1
@ -50,18 +50,10 @@ impl GitGrabber {
|
||||
String::from(b)
|
||||
}
|
||||
|
||||
pub fn generate_repo_desc(origin_branch: &str, local_branch: &str) -> String {
|
||||
pub fn generate_repo_desc() -> String {
|
||||
let curr_branch = GitGrabber::get_current_branch();
|
||||
let output = Command::new("git")
|
||||
.args([
|
||||
"rev-list",
|
||||
"--left-right",
|
||||
"--pretty=oneline",
|
||||
&format!(
|
||||
"{}...{}",
|
||||
origin_branch.to_string(),
|
||||
local_branch.to_string()
|
||||
),
|
||||
])
|
||||
.args(["reflog", "show", &curr_branch])
|
||||
.output()
|
||||
.expect("Failed to get repo details");
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user