Summary
Write notice message to the build log.
- Namespace
- Cake
.Common .Build .GitHubActions .Commands - Containing Type
- Git
Hub Actions Commands
Syntax
public void Notice(string message, GitHubActionsAnnotation annotation = null)
Examples
if (GitHubActions.IsRunningOnGitHubActions)
{
GitHubActions.Commands.Notice("This is a notice message");
}
Parameters
| Name | Type | Description |
|---|---|---|
| message | string | The message. |
| annotation | Git |
The annotation. |
Return Value
| Type | Description |
|---|---|
| void |
