From cc454458018fd5bfee006031e332a79a4e19b8e1 Mon Sep 17 00:00:00 2001 From: Ondrej Mirtes Date: Fri, 29 Mar 2024 11:04:15 +0100 Subject: [PATCH] TMP - issue bot - increase comment limit --- 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 0f8d05a8d8..d0ea6adc0b 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) > 20) { + if (count($toPost) > 50) { $output->writeln('Too many comments to post, something is probably wrong.'); return 1; }