Added issue-search capability

This commit is contained in:
Kohsuke Kawaguchi
2015-02-14 09:53:29 -08:00
parent 1b4025300c
commit 4b6981c2e7
4 changed files with 106 additions and 2 deletions

View File

@@ -424,6 +424,14 @@ public class GitHub {
}
}
/**
* Search issues.
*/
public GHIssueSearchBuilder searchIssues() {
return new GHIssueSearchBuilder(this);
}
/*package*/ static URL parseURL(String s) {
try {
return s==null ? null : new URL(s);