Skip to content

Commit ce0c0f1

Browse files
committed
Add listContributors method parameter to determine whether to include anonymous contributors.
Fixes hub4j#1905
1 parent af5bde7 commit ce0c0f1

File tree

1 file changed

+19
-0
lines changed

1 file changed

+19
-0
lines changed

src/main/java/org/kohsuke/github/GHRepository.java

+19
Original file line numberDiff line numberDiff line change
@@ -3080,6 +3080,25 @@ public PagedIterable<Contributor> listContributors() throws IOException {
30803080
return root().createRequest().withUrlPath(getApiTailUrl("contributors")).toIterable(Contributor[].class, null);
30813081
}
30823082

3083+
/**
3084+
* List contributors paged iterable.
3085+
*
3086+
* @param includeAnonymous
3087+
* whether to include anonymous contributors
3088+
* @return the paged iterable
3089+
* @throws IOException
3090+
* the io exception
3091+
*/
3092+
public PagedIterable<Contributor> listContributors(boolean includeAnonymous) throws IOException {
3093+
if (includeAnonymous) {
3094+
return root().createRequest()
3095+
.withUrlPath(getApiTailUrl("contributors"))
3096+
.with("anon", "true")
3097+
.toIterable(Contributor[].class, null);
3098+
}
3099+
return listContributors();
3100+
}
3101+
30833102
/**
30843103
* The type Contributor.
30853104
*/

0 commit comments

Comments
 (0)