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
2 changed files with 1 additions and 11 deletions
Showing only changes of commit 1cf6d12bd6 - Show all commits

View File

@ -1,19 +1,10 @@
use core::panic;
use std::{
fs::write,
io::Write,
process::{Command, Output},
str::from_utf8,
};
use std::{process::Command, str::from_utf8};
// this is a comment test here
pub struct GitGrabber {}
impl GitGrabber {
pub fn new() -> Self {
GitGrabber {}
}
pub fn get_current_branch() -> String {
let branch = Command::new("git")
.args(["branch", "--show-current"])

View File

@ -1,4 +1,3 @@
use std::error::Error;
use reqwest::blocking::Client;
use serde::{Deserialize, Serialize};