core-test/src/core/GitHubEnvironmentContext.cs
2026-02-12 21:26:22 +01:00

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");
}