Skip to content

Commit 62eea0b

Browse files
committed
Fix yaml string case from AdditionalEnvironment to additional_environment
1 parent aa94a31 commit 62eea0b

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ Phase 1:
1313
continue_on_failure: true
1414
inherit_environment: true
1515
run_parallel: true
16-
AdditionalEnvironment:
16+
additional_environment:
1717
- MyEnviron1=Value1
1818
executor: ["sh", "-c"]
1919
steps:

setup_node_data.go

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,10 +6,10 @@ import (
66
)
77

88
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"`
1313
Executor []string
1414
Steps []nodeDataStep
1515
}

0 commit comments

Comments
 (0)