// Copyright (c) The Geekeey Authors
// SPDX-License-Identifier: EUPL-1.2
namespace Geekeey.Core;
///
/// Provides access to GitHub Actions environment context.
///
public interface IGitHubEnvironmentContext
{
///
/// Gets the base reference for pull requests.
/// Corresponds to the GITHUB_BASE_REF environment variable.
///
string? BaseRef { get; }
///
/// Gets the head reference for pull requests.
/// Corresponds to the GITHUB_HEAD_REF environment variable.
///
string? HeadRef { get; }
}