Skip to content

Commit

Permalink
Fix for github issue backend
Browse files Browse the repository at this point in the history
  • Loading branch information
janekbaraniewski committed Jul 24, 2023
1 parent 0a5e5ed commit 14665cc
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion pkg/issue.go
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,10 @@ func StartWorkingOnIssue(config IssuectlConfig, issueID IssueID) error {

Log.Infof(" 🫡\tMarking issue as In Progress in %v", profile.IssueBackend)

if err := issueBackend.StartIssue("", "", issueID); err != nil {
// FIXME: this is a workaround for github. we should move this to backend
issueRepo := config.GetRepository(profile.DefaultRepository)

if err := issueBackend.StartIssue(issueRepo.Owner, issueRepo.Name, issueID); err != nil {
return err
}

Expand Down

0 comments on commit 14665cc

Please sign in to comment.