Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/githubHelper.ts
Original file line number Diff line number Diff line change
Expand Up @@ -885,8 +885,8 @@ export class GithubHelper {

try {
// try to create the GitHub pull request from the GitLab issue
await this.githubApi.pulls.create(props);
return Promise.resolve({ data: null }); // need to return null promise for parent to wait on
const response = await this.githubApi.pulls.create(props);
return Promise.resolve(response);
} catch (err) {
if (err.status === 422) {
console.error(
Expand Down