Skip to content

Commit

Permalink
Fix listComments TypeError
Browse files Browse the repository at this point in the history
  • Loading branch information
weiting-chen committed Aug 19, 2024
1 parent ed6241a commit 4198e62
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions .github/workflows/dev_cron/issues_link.js
Original file line number Diff line number Diff line change
Expand Up @@ -31,8 +31,7 @@ async function haveComment(github, context, pullRequestNumber, body) {
const options = {
owner: context.repo.owner,
repo: context.repo.repo,
issue_number: pullRequestNumber,
page: 1
issue_number: pullRequestNumber
};
while (true) {
const response = await github.issues.listComments(options);
Expand Down

0 comments on commit 4198e62

Please sign in to comment.