From 018fd1c8f2cfcdc772112c22f3cca99cf05da8c5 Mon Sep 17 00:00:00 2001 From: Sandro Date: Mon, 24 Jan 2022 06:58:54 +0100 Subject: [PATCH] [GithubPullRequestBridge] Sort by newest PRs instead of latest updated (#2064) --- bridges/GithubPullRequestBridge.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bridges/GithubPullRequestBridge.php b/bridges/GithubPullRequestBridge.php index 44cc1c5c..91bd903b 100644 --- a/bridges/GithubPullRequestBridge.php +++ b/bridges/GithubPullRequestBridge.php @@ -34,5 +34,5 @@ class GitHubPullRequestBridge extends GithubIssueBridge { const BRIDGE_OPTIONS = array(0 => 'Project Pull Requests', 1 => 'Pull Request comments'); const URL_PATH = 'pull'; const SEARCH_QUERY_PATH = 'pulls'; - const SEARCH_QUERY = '?q=is%3Apr+sort%3Aupdated-desc'; + const SEARCH_QUERY = '?q=is%3Apr+sort%3Acreated-desc'; }