Skip to content

Commit

Permalink
<Issue-155> | When there are more than 30 branches in a repo, it is f…
Browse files Browse the repository at this point in the history
…etching the latest 30 and filtering the runs on those branches. This is causing issues. Detailed issue is raised at #155 | <SouravB>
  • Loading branch information
sourav-tw authored and zhe-zhao committed Dec 4, 2023
1 parent 2182a17 commit 2ed8d9a
Showing 1 changed file with 2 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,8 @@ interface GithubFeignClient {
@RequestHeader("credential") credential: String,
@PathVariable("owner") owner: String,
@PathVariable("repo") repo: String,
@RequestParam("per_page", required = false) perPage: Int? = 100,
@RequestParam("page", required = false) pageIndex: Int? = 1
): List<BranchResponse>?
}

Expand Down

0 comments on commit 2ed8d9a

Please sign in to comment.