File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -136,7 +136,7 @@ export class Repository {
136136 `git remote show origin | grep 'HEAD branch' | cut -d ' ' -f5` ,
137137 ) ;
138138
139- return this . _octokit . rest . pulls . create ( <
139+ return await this . _octokit . rest . pulls . create ( <
140140 RestEndpointMethodTypes [ "pulls" ] [ "create" ] [ "parameters" ]
141141 > {
142142 owner : this . _config . repository ?. owner ,
@@ -165,7 +165,7 @@ export class Repository {
165165 return ;
166166 }
167167
168- return this . _octokit . rest . issues . addAssignees ( <
168+ return await this . _octokit . rest . issues . addAssignees ( <
169169 RestEndpointMethodTypes [ "issues" ] [ "addAssignees" ] [ "parameters" ]
170170 > {
171171 owner : this . _config . repository ?. owner ,
@@ -187,7 +187,7 @@ export class Repository {
187187 return ;
188188 }
189189
190- return this . _octokit . rest . issues . addLabels ( <
190+ return await this . _octokit . rest . issues . addLabels ( <
191191 RestEndpointMethodTypes [ "issues" ] [ "addLabels" ] [ "parameters" ]
192192 > {
193193 owner : this . _config . repository ?. owner ,
You can’t perform that action at this time.
0 commit comments