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.GitHubActions.
Summary
Gets an object for writing issues to GitHub Actions using the specified settings.
- Assembly
- Cake
.Issues .PullRequests .GitHubActions .dll - Namespace
- Cake
.Issues .PullRequests .GitHubActions - Containing Type
- Git
Hub Actions Builds Aliases
Syntax
public static IPullRequestSystem GitHubActionsBuilds(this ICakeContext context, GitHubActionsBuildSettings settings)
Examples
Report code analysis issues reported as MsBuild warnings to GitHub Actions:
var gitHubActionsSettings =
new GitHubActionsBuildSettings
{
};
ReportCodeAnalysisIssuesToPullRequest(
MsBuildCodeAnalysis(
@"c:\build\msbuild.log",
MsBuildXmlFileLoggerFormat),
GitHubActionsBuilds(gitHubActionsSettings),
@"c:\repo");
Attributes
Type | Description |
---|---|
Cake |
|
Cake |
Parameters
Name | Type | Description |
---|---|---|
context | ICakeContext | The context. |
settings | Git |
Settings for writing issues to GitHub Actions. |
Return Value
Type | Description |
---|---|
IPullRequestSystem | Object for writing issues to GitHub Actions. |