mirror of
https://github.com/zoriya/octokit.net.git
synced 2026-06-07 12:26:18 +00:00
Merge pull request #1872 from richlander/patch-1
Updating to more recent repo names
This commit is contained in:
+5
-10
@@ -17,18 +17,13 @@ A common scenario is to search for issues to triage:
|
||||
var request = new SearchIssuesRequest();
|
||||
|
||||
// you can add individual repos to focus your search
|
||||
request.Repos.Add("aspnet/dnx");
|
||||
request.Repos.Add("aspnet", "dnvm");
|
||||
request.Repos.Add("aspnet/home");
|
||||
request.Repos.Add("dotnet", "core");
|
||||
|
||||
// or use a series of repositories
|
||||
request.Repos = new RepositoryCollection {
|
||||
"aspnet/dnx",
|
||||
"aspnet/dnvm"
|
||||
};
|
||||
|
||||
request.Repos = new RepositoryCollection {
|
||||
{ "aspnet", "dnx" },
|
||||
{ "aspnet", "dnvm" }
|
||||
"aspnet/home",
|
||||
"dotnet/core"
|
||||
};
|
||||
```
|
||||
|
||||
@@ -59,7 +54,7 @@ request.Commenter = "haacked";
|
||||
|
||||
// rather than setting all these, you can use this to find
|
||||
// all the above for a specific user with this one-liner
|
||||
request.Involves = "davidfowl";
|
||||
request.Involves = "terrajobst";
|
||||
|
||||
// by default this will search on open issues, set this if
|
||||
// you want to get all issues
|
||||
|
||||
Reference in New Issue
Block a user