Skip to content

Commit

Permalink
Add fork method to GHRepositorySearchBuilder
Browse files Browse the repository at this point in the history
  • Loading branch information
tied committed Jun 3, 2021
1 parent 3ced4fc commit af82b8b
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions src/main/java/org/kohsuke/github/GHRepositorySearchBuilder.java
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,18 @@ public GHRepositorySearchBuilder size(String v) {
return q("size:" + v);
}

/**
* Fork gh repository search builder.
* Possible values: true, only
*
* @param v
* the v
* @return the gh repository search builder
*/
public GHRepositorySearchBuilder fork(String v) {
return q("fork:" + v);
}

/**
* Forks gh repository search builder.
*
Expand Down

0 comments on commit af82b8b

Please sign in to comment.