From e643614b9ef6d997b139eef00e823ebf66f89104 Mon Sep 17 00:00:00 2001 From: Jan Baraniewski Date: Mon, 24 Jul 2023 16:37:31 +0200 Subject: [PATCH] Generate branch name only if no overwrite provided --- pkg/issue.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/issue.go b/pkg/issue.go index 4101903..a708c6e 100644 --- a/pkg/issue.go +++ b/pkg/issue.go @@ -40,7 +40,7 @@ func StartWorkingOnIssue(customIssueName string, config IssuectlConfig, issueID dirName := name branchName := name - if profile.IssueBackend != "" { + if profile.IssueBackend != "" && customIssueName == "" { backendConfig := config.GetBackend(profile.IssueBackend) issueBackend, err := getIssueBackendConfigurator(backendConfig) if err != nil {