We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent cc30593 commit 34015c9Copy full SHA for 34015c9
1 file changed
src/githubHelper.ts
@@ -885,8 +885,8 @@ export class GithubHelper {
885
886
try {
887
// try to create the GitHub pull request from the GitLab issue
888
- await this.githubApi.pulls.create(props);
889
- 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);
890
} catch (err) {
891
if (err.status === 422) {
892
console.error(
0 commit comments