From 5998afb35a5572e925e267e076311889ff0f7939 Mon Sep 17 00:00:00 2001 From: ExpensiveKoala Date: Sun, 29 Sep 2024 01:12:43 -0700 Subject: [PATCH] Update update-set-implementation-lists.yml --- .github/workflows/update-set-implementation-lists.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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`); }