@@ -64,7 +64,7 @@ Using a `template` is **suggested** for the following:
64
64
``` yaml template.yml
65
65
...
66
66
- type : dropdown
67
- id : $dropdown
67
+ id : _dropdown
68
68
description : ' template says: {...}, build says: ...'
69
69
options :
70
70
- a
@@ -76,7 +76,7 @@ Using a `template` is **suggested** for the following:
76
76
``` yaml workflow.yml
77
77
...
78
78
with :
79
- id : $dropdown
79
+ id : _dropdown
80
80
description : ' template says: {...}, build says: ...'
81
81
options : {...}, b
82
82
...
@@ -87,7 +87,7 @@ Using a `template` is **suggested** for the following:
87
87
``` yaml build.yml #1
88
88
...
89
89
with :
90
- id : $dropdown
90
+ id : _dropdown
91
91
description : ' template says: template says: {...}, build says: ..., build says: ...'
92
92
options :
93
93
- a
@@ -100,7 +100,7 @@ Using a `template` is **suggested** for the following:
100
100
``` yaml workflow.yml
101
101
...
102
102
with :
103
- id : $dropdown
103
+ id : _dropdown
104
104
description : ' template says: {{...}}, build says: ...'
105
105
options : {{...}}, c
106
106
...
@@ -111,7 +111,7 @@ Using a `template` is **suggested** for the following:
111
111
``` yaml build.yml #2
112
112
...
113
113
with :
114
- id : $dropdown
114
+ id : _dropdown
115
115
description : ' template says: template says: template says: {...}, build says: ..., build says: ..., build says: ...'
116
116
options :
117
117
- a
@@ -125,7 +125,7 @@ Using a `template` is **suggested** for the following:
125
125
``` yaml workflow.yml
126
126
...
127
127
with :
128
- id : $dropdown
128
+ id : _dropdown
129
129
description : ' template says: {{...}} but build says: ...'
130
130
options : {...}, d
131
131
...
@@ -136,7 +136,7 @@ Using a `template` is **suggested** for the following:
136
136
``` yaml build.yml #3
137
137
...
138
138
with :
139
- id : $dropdown
139
+ id : _dropdown
140
140
description : ' template says: template says: template says: template says: {...}, build says: ..., build says: ..., build says: ... but build says: ...'
141
141
options :
142
142
- a
@@ -166,4 +166,3 @@ Consider using [ to see a usage example and to [ PR #5 ] ( ../../pull/5 ) .\
168
168
Don't forget to use the ` dry_run ` option.
169
-
0 commit comments