This site is in read only mode. Please continue to browse, but replying, likes, and other actions are disabled for now.

⚠️ We've moved!

Hi there!

To reduce project dependency on 3rd party paid services the StackStorm TSC has decided to move the Q/A from this forum to Github Discussions. This will make user experience better integrated with the native Github flow, as well as the questions closer to the community where they can provide answers.

Use 🔗 Github Discussions to ask your questions.

[Fixed] Orquesta; with syntax; workflow hangs indefinetly

A simple with orquesta workflow does not work for me:

version: 1.0
tasks:
  add_domains_to_ticket:
    with:
      items: "domain  in {{ctx().mitigate_domains }}"
      action: "core.echo message={{item(domain)}}"



input:
  - mitigate_domains
  - ticket: null


meta:

pack: intel
enabled: true
runner_type: orquesta
name: ticket_add_domains_mitigate
parameters:
  mitigate_domains:
    type: "array"
    items:
      type: "string"
  ticket:
    type: integer
entry_point: workflows/ticket_add_domains_mitigate.yaml

Indentation and starting whitespace is syntactical in YAML, so make sure your indentation is correct:

So the bug here is that this will cause the action to be in a running state forever.

Agreed, please open a bug in the Orquesta project:

The issue looks like fixed in Fix schema of with items task to not allow additional properties by m4dcoder · Pull Request #195 · StackStorm/orquesta · GitHub