We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
If the action is not listed syntactically correct the workflow will stay in a running state forever: workflow:
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
the fix is:
tasks: add_domains_to_ticket: with: items: "domain in {{ctx().mitigate_domains }}" action: "core.echo message={{item(domain)}}"
The text was updated successfully, but these errors were encountered:
Successfully merging a pull request may close this issue.
If the action is not listed syntactically correct the workflow will stay in a running state forever:
workflow:
meta:
the fix is:
The text was updated successfully, but these errors were encountered: