mirror of
https://github.com/actions/runner.git
synced 2025-12-10 20:36:49 +00:00
31 lines
967 B
C#
31 lines
967 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Runtime.Serialization;
|
|
using GitHub.DistributedTask.WebApi;
|
|
using Sdk.RSWebApi.Contracts;
|
|
|
|
namespace GitHub.Actions.RunService.WebApi
|
|
{
|
|
[DataContract]
|
|
public class CompleteJobRequest
|
|
{
|
|
[DataMember(Name = "planId", EmitDefaultValue = false)]
|
|
public Guid PlanID { get; set; }
|
|
|
|
[DataMember(Name = "jobId", EmitDefaultValue = false)]
|
|
public Guid JobID { get; set; }
|
|
|
|
[DataMember(Name = "conclusion")]
|
|
public TaskResult Conclusion { get; set; }
|
|
|
|
[DataMember(Name = "outputs", EmitDefaultValue = false)]
|
|
public Dictionary<string, VariableValue> Outputs { get; set; }
|
|
|
|
[DataMember(Name = "stepResults", EmitDefaultValue = false)]
|
|
public IList<StepResult> StepResults { get; set; }
|
|
|
|
[DataMember(Name = "annotations", EmitDefaultValue = false)]
|
|
public IList<Annotation> Annotations { get; set; }
|
|
}
|
|
}
|