File tree 2 files changed +5
-5
lines changed
2 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -13,7 +13,7 @@ Phase 1:
13
13
continue_on_failure: true
14
14
inherit_environment: true
15
15
run_parallel: true
16
- AdditionalEnvironment :
16
+ additional_environment :
17
17
- MyEnviron1=Value1
18
18
executor: ["sh", "-c"]
19
19
steps:
Original file line number Diff line number Diff line change @@ -6,10 +6,10 @@ import (
6
6
)
7
7
8
8
type nodeData struct {
9
- ContinueOnFailure bool `json:"continue_on_failure"`
10
- InheritEnvironment bool `json:"inherit_environment"`
11
- AdditionalEnvironment []string
12
- RunParallel bool `json:"run_parallel"`
9
+ ContinueOnFailure bool `json:"continue_on_failure"`
10
+ InheritEnvironment bool `json:"inherit_environment"`
11
+ AdditionalEnvironment []string `json:"additional_environment"`
12
+ RunParallel bool `json:"run_parallel"`
13
13
Executor []string
14
14
Steps []nodeDataStep
15
15
}
You can’t perform that action at this time.
0 commit comments