Skip to content

Commit 14665cc

Browse files
Fix for github issue backend
1 parent 0a5e5ed commit 14665cc

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

pkg/issue.go

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,10 @@ func StartWorkingOnIssue(config IssuectlConfig, issueID IssueID) error {
5252

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

55-
if err := issueBackend.StartIssue("", "", issueID); err != nil {
55+
// FIXME: this is a workaround for github. we should move this to backend
56+
issueRepo := config.GetRepository(profile.DefaultRepository)
57+
58+
if err := issueBackend.StartIssue(issueRepo.Owner, issueRepo.Name, issueID); err != nil {
5659
return err
5760
}
5861

0 commit comments

Comments
 (0)