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 1f612bc commit 6f06276Copy full SHA for 6f06276
docs/pipelines/process/includes/parameter-data-types.md
@@ -99,6 +99,8 @@ jobs:
99
steps:
100
- ${{ parameters.myStep }} # Use the step from the 'myStep' parameter
101
102
-- ${{ each region in parameters.myStringlist}}:
+- job: stringList # Define a job named 'myStep'
103
+ steps:
104
+ - ${{ each region in parameters.myStringlist}}:
105
- script: echo ${{region}}
106
```
0 commit comments