This activity allows you to run flogo actions.
flogo install github.com/project-flogo/contrib/activity/runaction
Name | Type | Description |
---|---|---|
actionRef | string | The ‘ref’ to the action to be run |
actionSettings | object | The settings of the action |
The inputs for this activity should be the inputs for the action you are running
Name | Type | Description |
---|---|---|
output | object | The output of the action. |
The below example logs a message ‘test message’:
{
"id": "cmlact",
"ref": "github.com/project-flogo/contrib/activity/runaction",
"settings": {
"actionRef": "github.com/project-flogo/catalystml-flogo/action",
"actionSettings": { "catalystMlURI" : "file://cml.json" }
},
"input": {
"dataIn": "=$.result"
}
}