Skip to content

Commit

Permalink
Generate branch name only if no overwrite provided
Browse files Browse the repository at this point in the history
  • Loading branch information
janekbaraniewski committed Jul 24, 2023
1 parent 3d6c663 commit e643614
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/issue.go
Original file line number Diff line number Diff line change
Expand Up @@ -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 {
Expand Down

0 comments on commit e643614

Please sign in to comment.