From cfc3735a7dd19b1c1c3c60576f778498dd059b7b Mon Sep 17 00:00:00 2001 From: Mandresy RABENJAHARISON Date: Tue, 8 Jul 2025 18:12:16 +0300 Subject: [PATCH] fix: update branch name format to use 'ticket-number' instead of 'us-number' --- main.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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)