Summary
Start a group in the build log.
- Namespace
- Cake
.Common .Build .GitHubActions .Commands - Containing Type
- Git
Hub Actions Commands
Syntax
public void StartGroup(string title)
Examples
if (GitHubActions.IsRunningOnGitHubActions)
{
GitHubActions.Commands.StartGroup("Cake group");
Information("This is inside a group");
GitHubActions.Commands.EndGroup();
}
Parameters
| Name | Type | Description |
|---|---|---|
| title | string | The title. |
Return Value
| Type | Description |
|---|---|
| void |
