workflows icon indicating copy to clipboard operation
workflows copied to clipboard

Don't support multi workflows defined in a single yaml file ?

Open xinxinh2020 opened this issue 3 years ago • 0 comments

I has a local workflow file like:

---
name: Show Open vswitch bridges
command: |-
    ovs-vsctl show
tags:
  - ovs
shells: []

---
name: Add a Open vswitch bridge
command: |-
    ovs-vsctl add-br {{bridge_name}}
tags:
  - ovs
description: Add a bridge
arguments:
  - name: bridge_name
    description: The name of the bridge that should be added
    default_value: mybridge
shells: []

I suppose that it will have two custom workflows recognized by warp and it doesn't work. Can warp recognize multi workflows defined in a single yaml file now?

xinxinh2020 avatar Jun 13 '22 10:06 xinxinh2020