Skip to content

Commit

Permalink
Merge pull request #317 from vzamanillo/workflow-results
Browse files Browse the repository at this point in the history
Fixed result condition while processing workflows
  • Loading branch information
ehsandeep committed Sep 19, 2020
2 parents 4c76b25 + 650d717 commit 76a4102
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion internal/runner/processor.go
Original file line number Diff line number Diff line change
Expand Up @@ -165,7 +165,7 @@ func (r *Runner) processWorkflowWithList(p progress.IProgress, workflow *workflo
}

for _, variable := range variables {
result = variable.IsFalsy()
result = !variable.IsFalsy()
if result {
break
}
Expand Down

0 comments on commit 76a4102

Please sign in to comment.