Skip to content
This repository has been archived by the owner on Apr 26, 2024. It is now read-only.

Commit

Permalink
log requested_reviewers
Browse files Browse the repository at this point in the history
  • Loading branch information
shikajiro committed Sep 25, 2023
1 parent 9b57f7b commit c391308
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions src/modules/github.ts
Original file line number Diff line number Diff line change
Expand Up @@ -78,6 +78,7 @@ export const latestReviewer = async (repoName: string, prNumber: number, repoTok
headers: { "authorization": `Bearer ${repoToken}` },
}
);
core.info(`requested_reviewers users: ${result.data.users}`);
if(result.data.users.length == 0) return null;

return result.data.users.map((user) => user.login);
Expand Down

0 comments on commit c391308

Please sign in to comment.