From cf993509ed076527ec9f9172a30239b5040a2351 Mon Sep 17 00:00:00 2001 From: Ondrej Mirtes Date: Fri, 29 Mar 2024 11:11:55 +0100 Subject: [PATCH] Revert "TMP - issue bot - increase comment limit" This reverts commit cc454458018fd5bfee006031e332a79a4e19b8e1. --- issue-bot/src/Console/EvaluateCommand.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/issue-bot/src/Console/EvaluateCommand.php b/issue-bot/src/Console/EvaluateCommand.php index d0ea6adc0b..0f8d05a8d8 100644 --- a/issue-bot/src/Console/EvaluateCommand.php +++ b/issue-bot/src/Console/EvaluateCommand.php @@ -158,7 +158,7 @@ protected function execute(InputInterface $input, OutputInterface $output): int $postComments = (bool) $input->getOption('post-comments'); if ($postComments) { - if (count($toPost) > 50) { + if (count($toPost) > 20) { $output->writeln('Too many comments to post, something is probably wrong.'); return 1; }