The workflows section controls where Argus looks for workflow YAML files and whether workflow discovery is active. Workflows are YAML-defined automation sequences that are discovered at startup from the configured directory.
See Workflows for the full workflows guide including how to author and run workflows.
workflows:
directory: workflows
enabled: true
A customized example using a project-specific path:
workflows:
directory: /opt/argus/workflows
enabled: true
| Field | Type | Default | Description |
|---|---|---|---|
directory | string | "workflows" | Directory where workflow YAML files are stored. Relative paths are resolved from the config file location. |
enabled | bool | true | Enable workflow discovery. When false, the workflows directory is not scanned and no workflows are loaded at startup. |