コード例 #1
0
 public Task UpdatePullRequestAsync(string pullRequestUri, PullRequest pullRequest)
 {
     throw new NotImplementedException();
 }
コード例 #2
0
 public Task <string> CreatePullRequestAsync(string repoUri, PullRequest pullRequest)
 {
     throw new NotImplementedException();
 }
コード例 #3
0
ファイル: Remote.cs プロジェクト: rainersigwald/arcade
 public Task UpdatePullRequestAsync(string pullRequestUri, PullRequest pullRequest)
 {
     return(_gitClient.UpdatePullRequestAsync(pullRequestUri, pullRequest));
 }
コード例 #4
0
ファイル: Remote.cs プロジェクト: rainersigwald/arcade
 public Task <string> CreatePullRequestAsync(string repoUri, PullRequest pullRequest)
 {
     return(_gitClient.CreatePullRequestAsync(repoUri, pullRequest));
 }
コード例 #5
0
ファイル: Remote.cs プロジェクト: wtgodbe/arcade-services
 public Task <string> CreatePullRequestAsync(string repoUri, PullRequest pullRequest)
 {
     CheckForValidGitClient();
     return(_gitClient.CreatePullRequestAsync(repoUri, pullRequest));
 }