Skip to content

Commit 48d22d4

Browse files
Retreive issues in ascending order. References #16
1 parent 9e136e4 commit 48d22d4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

app/Services/GithubService.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ public function repositoryIssues($repository)
2626
return $this->client->api('issue')->all(
2727
$this->extractRepositoryUser($repository),
2828
$this->extractRepositoryName($repository),
29-
array('state' => 'open')
29+
['state' => 'open', 'direction' => 'asc']
3030
);
3131
}
3232

0 commit comments

Comments
 (0)