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 default 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)
Examples
Report code analysis issues reported as MsBuild warnings to GitHub Actions:
ReportCodeAnalysisIssuesToPullRequest(
MsBuildCodeAnalysis(
@"c:\build\msbuild.log",
MsBuildXmlFileLoggerFormat),
GitHubActionsBuilds(),
@"c:\repo");
Attributes
Type | Description |
---|---|
Cake |
|
Cake |
Parameters
Name | Type | Description |
---|---|---|
context | ICakeContext | The context. |
Return Value
Type | Description |
---|---|
IPullRequestSystem | Object for writing issues to GitHub Actions. |