From 200d9bc0c37803811ed57f3a53c00a475e5c5d03 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 44cc1c5c65e..91bd903b4c0 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'; }