diff --git a/.github/workflows/update-set-implementation-lists.yml b/.github/workflows/update-set-implementation-lists.yml index 3ce92b9f99a..f59033c9c28 100644 --- a/.github/workflows/update-set-implementation-lists.yml +++ b/.github/workflows/update-set-implementation-lists.yml @@ -70,11 +70,11 @@ jobs: let issueComments = undefined; if (foundIssue) { - issueComments = await github.paginate(github.rest.issues.listComments, { + issueComments = github.paginate(github.rest.issues.listComments, { owner: context.repo.owner, repo: context.repo.repo, issue_number: foundIssue.number - }); + }).result(); console.log(`Found ${issueComments.length} comments on issue`); }