GitHubActionsWorkflowInfo.

RepositoryOwnerId Property

Summary

Gets the account ID of the repository owner.

Syntax

public string RepositoryOwnerId { get; }

Examples

if (BuildSystem.GitHubActions.IsRunningOnGitHubActions)
{
    Information(@"Workflow RepositoryOwnerId: {0}", BuildSystem.GitHubActions.Environment.Workflow.RepositoryOwnerId);
}
if (GitHubActions.IsRunningOnGitHubActions)
{
    Information(@"Workflow RepositoryOwnerId: {0}", GitHubActions.Environment.Workflow.RepositoryOwnerId);
}

Value

Type Description
string The account ID of the repository owner.