This commit is contained in:
GrantBirki 2023-11-28 12:39:36 -07:00
Родитель 663d0a77a0
Коммит 51c368b3bf
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 9029BBCCC15C6F8C
3 изменённых файлов: 3 добавлений и 3 удалений

2
dist/index.js сгенерированный поставляемый
Просмотреть файл

@ -37690,7 +37690,7 @@ class GitHubProvider {
// filter out all reviews that are not by the current authenticated user via login
const approvedReviewsByUser = approvedReviews.filter(
(review) => review.user.login === login,
(review) => review.user.login.toLowerCase() === login.toLowerCase(),
);
// if there are any reviews left, then login (this Action) has already approved the PR and we should not approve it again

2
dist/index.js.map сгенерированный поставляемый

Различия файлов скрыты, потому что одна или несколько строк слишком длинны

Просмотреть файл

@ -36,7 +36,7 @@ class GitHubProvider {
// filter out all reviews that are not by the current authenticated user via login
const approvedReviewsByUser = approvedReviews.filter(
(review) => review.user.login === login,
(review) => review.user.login.toLowerCase() === login.toLowerCase(),
);
// if there are any reviews left, then login (this Action) has already approved the PR and we should not approve it again