Compare updated template evaluator (#4092)

This commit is contained in:
eric sciple
2025-11-07 14:18:52 -06:00
committed by GitHub
parent 53d69ff441
commit b5b7986cd6
188 changed files with 27222 additions and 4 deletions
@@ -0,0 +1,20 @@
using System;
namespace GitHub.Actions.WorkflowParser.ObjectTemplating
{
/// <summary>
/// Tracks telemetry data during workflow parsing.
/// </summary>
public sealed class Telemetry
{
/// <summary>
/// Gets or sets the count of YAML anchors encountered during parsing.
/// </summary>
public Int32 YamlAnchors { get; set; }
/// <summary>
/// Gets or sets the count of YAML aliases encountered during parsing.
/// </summary>
public Int32 YamlAliases { get; set; }
}
}