Summary
Reports issues to pull requests.
Syntax
public static PullRequestIssueResult ReportIssuesToPullRequest(this ICakeContext context, IEnumerable<IIssue> issues, IPullRequestSystem pullRequestSystem, DirectoryPath repositoryRoot)
Examples
Report issues reported as MsBuild warnings to a TFS pull request:
ReportIssuesToPullRequest(
issues,
TfsPullRequests(
new Uri("http://myserver:8080/tfs/defaultcollection/myproject/_git/myrepository"),
"refs/heads/feature/myfeature",
TfsAuthenticationNtlm()),
@"C:\repo"));
Attributes
Type |
Description |
CakeMethodAliasAttribute |
|
CakeAliasCategoryAttribute |
|
Parameters
Name |
Type |
Description |
context |
ICakeContext |
The context. |
issues |
IEnumerable<IIssue> |
Issues which should be reported. |
pullRequestSystem |
IPullRequestSystem |
The pull request system. |
repositoryRoot |
DirectoryPath |
Root path of the repository. |
Return Value