Skip to content

Commit

Permalink
Revert "TMP - issue bot - increase comment limit"
Browse files Browse the repository at this point in the history
This reverts commit cc45445.
  • Loading branch information
ondrejmirtes committed Mar 29, 2024
1 parent abb87dd commit cf99350
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion issue-bot/src/Console/EvaluateCommand.php
Expand Up @@ -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;
}
Expand Down

0 comments on commit cf99350

Please sign in to comment.