This content is part of a third party extension that is not supported by the Cake project.
For more information about this extension see Cake.Issues.PullRequests.
Summary
Reports issues to pull requests.
- Assembly
- Cake
.Issues .PullRequests .dll - Namespace
- Cake
.Issues .PullRequests - Containing Type
- Aliases
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 |
---|---|
Cake |
|
Cake |
Parameters
Name | Type | Description |
---|---|---|
context | ICakeContext | The context. |
issues | IEnumerable |
Issues which should be reported. |
pullRequestSystem | IPullRequestSystem | The pull request system. |
repositoryRoot | DirectoryPath | Root path of the repository. |
Return Value
Type | Description |
---|---|
Pull |
Information about the reported and written issues. |