From e35618dae9be4c1b74d9639bed74561ebd5576c1 Mon Sep 17 00:00:00 2001 From: Alisher Nurmanov Date: Mon, 25 Aug 2025 20:14:36 +0500 Subject: [PATCH 1/2] wip --- gitcmds/const.go | 1 + 1 file changed, 1 insertion(+) diff --git a/gitcmds/const.go b/gitcmds/const.go index e2718c9..7036344 100644 --- a/gitcmds/const.go +++ b/gitcmds/const.go @@ -7,6 +7,7 @@ const ( errMsgFailedToGetMainBranch = "failed to get main branch: %w" countOfZerosIn1000 = 3 decimalBase = 10 + bitSizeOfInt64 = 64 ) From 0a1e310cd4e42bc06099b6dde39db1dc96675511 Mon Sep 17 00:00:00 2001 From: Alisher Nurmanov Date: Mon, 25 Aug 2025 20:18:41 +0500 Subject: [PATCH 2/2] sdfsewrfe --- gitcmds/gitcmds.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gitcmds/gitcmds.go b/gitcmds/gitcmds.go index 52e289d..83aeaba 100644 --- a/gitcmds/gitcmds.go +++ b/gitcmds/gitcmds.go @@ -2300,7 +2300,7 @@ func createPR(wd, parentRepoName, prBranchName string, notes []string, asDraft b prTitle, err = jira.GetJiraIssueName(notesObj.JiraTicketURL, "") default: fmt.Print("Enter pull request title: ") - if _, err := fmt.Scanln(&prTitle); err != nil { + if _, err := fmt.Scan(&prTitle); err != nil { return "", "", err } prTitle = strings.TrimSpace(prTitle)