Browse Source

Merge pull request #1593 from apiraino/increase-num-prs-waiting-for-review

Add cutoff env var for PRs WRF from T-compiler
Mark Rousskov 3 years ago
parent
commit
2a37c453c0
1 changed files with 1 additions and 1 deletions
  1. 1 1
      src/github/graphql.rs

+ 1 - 1
src/github/graphql.rs

@@ -304,7 +304,7 @@ impl super::IssuesQuery for LeastRecentlyReviewedPullRequests {
 
         let prs: Vec<_> = prs
             .into_iter()
-            .take(5)
+            .take(50)
             .map(
                 |(updated_at, number, title, html_url, repo_name, labels, assignees)| {
                     let updated_at = crate::actions::to_human(updated_at);