swf-runtime 1.0.0-alpha11

Runtime engine for Serverless Workflow DSL — execute, validate, and orchestrate workflows
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
document:
  dsl: '1.0.2'
  namespace: test
  name: call-custom-function-cataloged-global
  version: '0.1.0'
use:
    catalogs: 
        global:
            endpoint: https://github.com/serverlessworkflow/catalog
do:
  - log:
      call: log:1.0.0@global
      with:
        message: Hello, world!
        level: information
        timestamp: true
        format: '{TIMESTAMP} [{LEVEL}] ({CONTEXT}): {MESSAGE}'