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 using the specified settings.
- 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, IReportIssuesToPullRequestSettings settings)
Examples
Report issues reported as MsBuild warnings to a TFS pull request and limit number of comments to ten:
var settings =
new ReportIssuesToPullRequestSettings(@"C:\repo")
{
MaxIssuesToPost = 10
};
ReportIssuesToPullRequest(
issues,
TfsPullRequests(
new Uri("http://myserver:8080/tfs/defaultcollection/myproject/_git/myrepository"),
"refs/heads/feature/myfeature",
TfsAuthenticationNtlm()),
settings));
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. |
settings | I |
The settings. |
Return Value
Type | Description |
---|---|
Pull |
Information about the reported and written issues. |