14 lines
No EOL
458 B
C#
14 lines
No EOL
458 B
C#
// Copyright (c) The Geekeey Authors
|
|
// SPDX-License-Identifier: EUPL-1.2
|
|
|
|
namespace Geekeey.Core;
|
|
|
|
/// <summary>
|
|
/// Provides access to GitHub Actions environment context from environment variables.
|
|
/// </summary>
|
|
internal sealed class GitHubEnvironmentContext : IGitHubEnvironmentContext
|
|
{
|
|
public string? BaseRef => Environment.GetEnvironmentVariable("GITHUB_BASE_REF");
|
|
|
|
public string? HeadRef => Environment.GetEnvironmentVariable("GITHUB_HEAD_REF");
|
|
} |