You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I believe what happened is in lib/metadata/choose-assignee.js, there is the following code:
// Check for existing reviews and grab the reviewer who "touched it last".
var reviews = metadata.reviews;
if (reviews && reviews.length) {
return reviews[reviews.length - 1].user.login;
}
var reviewers = metadata.reviewersExcludingAuthor;
if (reviewers.length) {
var index = Math.floor(Math.random() * reviewers.length);
return reviewers[index].login;
}
The first conditional fails to make sure that the user.login it chooses is not in metadata.reviewersExcludingAuthor...
The text was updated successfully, but these errors were encountered:
This just happened in web-platform-tests/wpt#21194 (comment)
I believe what happened is in
lib/metadata/choose-assignee.js
, there is the following code:The first conditional fails to make sure that the
user.login
it chooses is not inmetadata.reviewersExcludingAuthor
...The text was updated successfully, but these errors were encountered: