{% extends "base.html" %} {% set active = 'workflows' %} {% block content %}

Workflows

Workflow definitions are YAML files in .civex/workflows/.

{% if workflows %} {% for wf in workflows %} {% endfor %}
NameDescriptionStepsFile
{{ wf.name }} {{ wf.description or '' }} {{ wf.steps }} {{ wf.filename }}
{% else %}

No workflows found. Add a YAML file to .civex/workflows/.

{% endif %}

Run workflow:

{% endblock %}