1
0
mirror of https://github.com/RSS-Bridge/rss-bridge.git synced 2025-01-17 14:18:35 +01:00

[GithubPullRequestBridge] Sort by newest PRs instead of latest updated (#2064)

This commit is contained in:
Sandro 2022-01-24 06:58:54 +01:00 committed by GitHub
parent 30553d8665
commit 018fd1c8f2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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';
}