Skip to content

Commit

Permalink
bump version (#14027)
Browse files Browse the repository at this point in the history
  • Loading branch information
dannyroosevelt committed Sep 19, 2024
1 parent 1b11b0b commit a407a12
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@ import helperFunctions from "../../helper_functions.app.mjs";
export default {
key: "helper_functions-trigger-workflow",
name: "Trigger Workflow",
description: "Invokes another workflow by its ID.",
version: "0.0.1",
description: "Trigger another Pipedream workflow in your workspace.",
version: "0.0.2",
type: "action",
props: {
helperFunctions,
Expand All @@ -16,7 +16,7 @@ export default {
event: {
type: "object",
label: "Event",
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}}`",
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}}`).",
optional: true,
},
},
Expand All @@ -28,7 +28,7 @@ export default {

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

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

return result;
},
Expand Down
2 changes: 1 addition & 1 deletion components/helper_functions/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@pipedream/helper_functions",
"version": "0.4.0",
"version": "0.4.1",
"description": "Pipedream Helper_functions Components",
"main": "helper_functions.app.mjs",
"keywords": [
Expand Down

0 comments on commit a407a12

Please sign in to comment.