Skip to content

Commit

Permalink
Merge pull request #290 from raeyulca/on-skipped-fix
Browse files Browse the repository at this point in the history
runconfig: add case statement for on_skipped
  • Loading branch information
sgotti authored Jan 19, 2022
2 parents 8787496 + 88bef44 commit 31b1547
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions internal/runconfig/runconfig.go
Original file line number Diff line number Diff line change
Expand Up @@ -285,6 +285,8 @@ func GenRunConfigTasks(uuid util.UUIDGenerator, c *config.Config, runName string
condition = rstypes.RunConfigTaskDependConditionOnSuccess
case config.DependConditionOnFailure:
condition = rstypes.RunConfigTaskDependConditionOnFailure
case config.DependConditionOnSkipped:
condition = rstypes.RunConfigTaskDependConditionOnSkipped
}
conditions[ic] = condition
}
Expand Down

0 comments on commit 31b1547

Please sign in to comment.