Skip to content

Commit a407a12

Browse files
bump version (#14027)
1 parent 1b11b0b commit a407a12

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

components/helper_functions/actions/trigger-workflow/trigger-workflow.mjs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@ import helperFunctions from "../../helper_functions.app.mjs";
33
export default {
44
key: "helper_functions-trigger-workflow",
55
name: "Trigger Workflow",
6-
description: "Invokes another workflow by its ID.",
7-
version: "0.0.1",
6+
description: "Trigger another Pipedream workflow in your workspace.",
7+
version: "0.0.2",
88
type: "action",
99
props: {
1010
helperFunctions,
@@ -16,7 +16,7 @@ export default {
1616
event: {
1717
type: "object",
1818
label: "Event",
19-
description: "The event to be sent to the triggered workflow as the triggering event. In the triggered workflow, you can refer to this event object using the Custom Expression `{{steps.trigger.event}}`",
19+
description: "The event to be sent to the triggered workflow as the triggering event. In the triggered workflow, you can reference this event object with a custom expression (e.g., `{{steps.trigger.event}}`).",
2020
optional: true,
2121
},
2222
},
@@ -28,7 +28,7 @@ export default {
2828

2929
const result = await $.flow.trigger(workflowId, event);
3030

31-
$.export("$summary", `Successfully triggered workflow with ID: ${workflowId}`);
31+
$.export("$summary", `Successfully triggered workflow ID **${workflowId}**`);
3232

3333
return result;
3434
},

components/helper_functions/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@pipedream/helper_functions",
3-
"version": "0.4.0",
3+
"version": "0.4.1",
44
"description": "Pipedream Helper_functions Components",
55
"main": "helper_functions.app.mjs",
66
"keywords": [

0 commit comments

Comments
 (0)