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