feat(pr_handler): Create PR title and description generation rules #1

Merged
tristonarmstrong merged 20 commits from dev into master 2025-01-12 19:06:43 +00:00
Showing only changes of commit 44c996127b - Show all commits

View File

@ -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");