Workflows Configuration

Configure workflows discovery — the directory where workflow YAML files are stored and whether discovery is enabled.

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
FieldTypeDefaultDescription
directorystring"workflows"Directory where workflow YAML files are stored. Relative paths are resolved from the config file location.
enabledbooltrueEnable workflow discovery. When false, the workflows directory is not scanned and no workflows are loaded at startup.