GitHubActionsCommands.

StartGroup(string) Method

Summary

Start a group in the build log.

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