We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 00fd2a3 commit c62608cCopy full SHA for c62608c
src/GitHub/Data/Actions/WorkflowJobs.hs
@@ -47,6 +47,7 @@ data Job = Job
47
, jobConclusion :: !Text
48
, jobStartedAt :: !UTCTime
49
, jobCompletedAt :: !UTCTime
50
+ , jobName :: !(Name Job)
51
, jobSteps :: !(Vector JobStep)
52
, jobRunCheckUrl :: !URL
53
, jobLabels :: !(Vector Text)
@@ -84,6 +85,7 @@ instance FromJSON Job where
84
85
<*> o .: "conclusion"
86
<*> o .: "started_at"
87
<*> o .: "completed_at"
88
+ <*> o .: "name"
89
<*> o .: "steps"
90
<*> o .: "check_run_url"
91
<*> o .: "labels"
0 commit comments