diff --git a/main.go b/main.go index 47d5f37..f3485f3 100644 --- a/main.go +++ b/main.go @@ -55,8 +55,8 @@ func main() { os.Exit(1) } - // Form the branch name in the format "prefix/us-number" - branchName := fmt.Sprintf("%s/us-%d", prefix, issueNumber) + // Form the branch name in the format "prefix/ticket-number" + branchName := fmt.Sprintf("%s/ticket-%d", prefix, issueNumber) logger.Printf("Branch name set to: %s\n", branchName)