-
Notifications
You must be signed in to change notification settings - Fork 32
/
WorkflowJob.cs
79 lines (56 loc) · 2.37 KB
/
WorkflowJob.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
namespace Octokit.Webhooks.Models.WorkflowJobEvent;
[PublicAPI]
public sealed record WorkflowJob
{
[JsonPropertyName("id")]
public long Id { get; init; }
[JsonPropertyName("run_id")]
public long RunId { get; init; }
[JsonPropertyName("run_attempt")]
public long RunAttempt { get; init; }
[JsonPropertyName("run_url")]
public string RunUrl { get; init; } = null!;
[JsonPropertyName("head_sha")]
public string HeadSha { get; init; } = null!;
[JsonPropertyName("node_id")]
public string NodeId { get; init; } = null!;
[JsonPropertyName("name")]
public string Name { get; init; } = null!;
[JsonPropertyName("check_run_url")]
public string CheckRunUrl { get; init; } = null!;
[JsonPropertyName("html_url")]
public string HtmlUrl { get; init; } = null!;
[JsonPropertyName("url")]
public string Url { get; init; } = null!;
[JsonPropertyName("status")]
[JsonConverter(typeof(StringEnumConverter<WorkflowJobStatus>))]
public StringEnum<WorkflowJobStatus> Status { get; init; } = null!;
[JsonPropertyName("steps")]
public IEnumerable<WorkflowJobStep> Steps { get; init; } = null!;
[JsonPropertyName("conclusion")]
[JsonConverter(typeof(StringEnumConverter<WorkflowJobConclusion>))]
public StringEnum<WorkflowJobConclusion>? Conclusion { get; init; }
[JsonPropertyName("labels")]
public IEnumerable<string> Labels { get; init; } = null!;
[JsonPropertyName("runner_id")]
public int? RunnerId { get; init; }
[JsonPropertyName("runner_name")]
public string? RunnerName { get; init; }
[JsonPropertyName("runner_group_id")]
public int? RunnerGroupId { get; init; }
[JsonPropertyName("runner_group_name")]
public string? RunnerGroupName { get; init; }
[JsonPropertyName("started_at")]
[JsonConverter(typeof(NullableDateTimeOffsetConverter))]
public DateTimeOffset? StartedAt { get; init; }
[JsonPropertyName("completed_at")]
[JsonConverter(typeof(NullableDateTimeOffsetConverter))]
public DateTimeOffset? CompletedAt { get; init; }
[JsonPropertyName("workflow_name")]
public string? WorkflowName { get; init; }
[JsonPropertyName("head_branch")]
public string? HeadBranch { get; init; }
[JsonPropertyName("created_at")]
[JsonConverter(typeof(DateTimeOffsetConverter))]
public DateTimeOffset CreatedAt { get; init; }
}