Summary
Gets the account ID of the repository owner.
- Namespace
- Cake
.Common .Build .GitHubActions .Data - Containing Type
- Git
Hub Actions Workflow Info
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. |
