We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
skipped
1 parent 194479a commit cee08f6Copy full SHA for cee08f6
modules/actions/task_state.go
@@ -35,6 +35,9 @@ func FullSteps(task *actions_model.ActionTask) []*actions_model.ActionTaskStep {
35
} else if task.Status.IsDone() {
36
preStep.Stopped = task.Stopped
37
preStep.Status = actions_model.StatusFailure
38
+ if task.Status.IsSkipped() {
39
+ preStep.Status = actions_model.StatusSkipped
40
+ }
41
}
42
logIndex += preStep.LogLength
43
0 commit comments