From 067abc9aba1d553ff82a2d33a661704b35a4cd99 Mon Sep 17 00:00:00 2001 From: Lukas Winkler Date: Sat, 23 Sep 2017 11:25:16 +0200 Subject: [PATCH] sort issues by most recently updated --- src/helpers/GithubImporter.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/helpers/GithubImporter.php b/src/helpers/GithubImporter.php index e45d6af..bf00e32 100755 --- a/src/helpers/GithubImporter.php +++ b/src/helpers/GithubImporter.php @@ -58,7 +58,7 @@ class GithubImporter { $params = array( $organization, $repository, - array('filter' => 'all', 'state' => 'all', 'direction' => 'asc', 'sort' => 'created') + array('filter' => 'all', 'state' => 'all', 'direction' => 'desc', 'sort' => 'updated') ); $paginator = new ResultPager($this->client);