RunAction
This activity allows you to run flogo actions.
Installation
Flogo CLI
flogo install github.com/r2d2-ai/contrib/activity/runaction
Configuration
Settings
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
Output
Name |
Type |
Description |
output |
object |
The output of the action. |
Examples
The below example logs a message 'test message':
{
"id": "cmlact",
"ref": "github.com/r2d2-ai/contrib/activity/runaction",
"settings": {
"actionRef": "github.com/r2d2-ai/catalystml-flogo/action",
"actionSettings": { "catalystMlURI" : "file://cml.json" }
},
"input": {
"dataIn": "=$.result"
}
}