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 2fc347b commit 928f35cCopy full SHA for 928f35c
modules/actions/task_state.go
@@ -35,6 +35,10 @@ 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
+ // preStep(Success) -> step1(Skipped) -> step2(Success)
39
+ if firstStep.Status.IsSkipped() {
40
+ preStep.Status = actions_model.StatusSuccess
41
+ }
42
if task.Status.IsSkipped() {
43
preStep.Status = actions_model.StatusSkipped
44
}
0 commit comments