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 b5402de commit 0eb6649Copy full SHA for 0eb6649
src/main/kotlin/com/delphix/yamlparser/Runner.kt
@@ -52,8 +52,12 @@ class Runner (
52
53
fun execActionPhase(environment: Environment) {
54
for (action in environment.actions) {
55
- if (action.event == env["gitEvent"]) callDelphix(environment.datapod, environment.name, action.action)
56
- outputStatus(environment.name, action.event, action.action)
+ if (action.event == env["gitEvent"]) {
+ callDelphix(environment.datapod, environment.name, action.action)
57
+ outputStatus(environment.name, action.event, action.action)
58
+ } else {
59
+ println("-${environment.name}: ${action.event}: Not Triggered.")
60
+ }
61
}
62
63
0 commit comments