damccorm commented on code in PR #37663:
URL: https://github.com/apache/beam/pull/37663#discussion_r2834876857
##########
scripts/ci/pr-bot/findPrsNeedingAttention.ts:
##########
@@ -90,11 +90,7 @@ async function isSlowReview(pull: any): Promise<boolean> {
})
).data;
for (const comment of reviewComments) {
- if (
- comments.some(
- ({ user: login }) => login !== pullAuthor && login !== BOT_NAME
- )
- ) {
+ if (comment.user.login !== pullAuthor && comment.user.login !== BOT_NAME) {
Review Comment:
This comment is correct, we should apply the change above as well
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]