Merge pull request #317 from vzamanillo/workflow-results

Fixed result condition while processing workflows
dev
bauthard 2020-09-20 01:53:09 +05:30 committed by GitHub
commit 76a4102a3f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -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
}