
Handle `scope` parameter in workbook api with `private` as default value Add `--public` option to workbook create/update commands Add `Scope` column to the output of workbook commands Change-Id: I5c9b107127afd55757fe9e815eff5b30e48fccac Closes-Bug: 1782790
22 lines
297 B
YAML
22 lines
297 B
YAML
---
|
|
version: '2.0'
|
|
|
|
name: wb
|
|
|
|
actions:
|
|
ac1:
|
|
input:
|
|
- str1
|
|
- str2
|
|
base: std.echo output="<% $.str1 %><% $.str2 %>"
|
|
|
|
workflows:
|
|
wf1:
|
|
type: direct
|
|
|
|
tasks:
|
|
hello:
|
|
action: std.echo output="Hello"
|
|
publish:
|
|
result: <% task(hello).result %>
|