@@ -35060,7 +35060,7 @@ class Repository {
3506035060 async createPullRequest() {
3506135061 try {
3506235062 const defaultBranch = await (0, processes_1.exec)(`git remote show origin | grep 'HEAD branch' | cut -d ' ' -f5`);
35063- return this._octokit.rest.pulls.create({
35063+ return await this._octokit.rest.pulls.create({
3506435064 owner: this._config.repository?.owner,
3506535065 repo: this._config.repository?.repo,
3506635066 title: this._config.repository?.pullRequest?.title ||
@@ -35083,7 +35083,7 @@ class Repository {
3508335083 if (assignees.length === 0) {
3508435084 return;
3508535085 }
35086- return this._octokit.rest.issues.addAssignees({
35086+ return await this._octokit.rest.issues.addAssignees({
3508735087 owner: this._config.repository?.owner,
3508835088 repo: this._config.repository?.repo,
3508935089 issue_number: issueNumber,
@@ -35101,7 +35101,7 @@ class Repository {
3510135101 if (labels.length === 0) {
3510235102 return;
3510335103 }
35104- return this._octokit.rest.issues.addLabels({
35104+ return await this._octokit.rest.issues.addLabels({
3510535105 owner: this._config.repository?.owner,
3510635106 repo: this._config.repository?.repo,
3510735107 issue_number: issueNumber,
0 commit comments