fix: update branch name format to use 'ticket-number' instead of 'us-number'

This commit is contained in:
Mandresy RABENJAHARISON 2025-07-08 18:12:16 +03:00
parent 655fc5fab7
commit cfc3735a7d

View File

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