-
Notifications
You must be signed in to change notification settings - Fork 9k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
chore(Execute Workflow Node): Update text copy for ExecuteWorkflow node and ResourceMapper #12277
Merged
Merged
Changes from all commits
Commits
Show all changes
6 commits
Select commit
Hold shift + click to select a range
0286e04
Copy
CharlieKolb 1906bae
Merge remote-tracking branch 'origin/feature-sub-workflow-inputs' int…
CharlieKolb 0f3bbbc
lockfile
CharlieKolb 5597987
Merge branch 'feature-sub-workflow-inputs' into ADO-2972
CharlieKolb 3841e7f
lint
CharlieKolb 51535e7
fix test
CharlieKolb File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -83,22 +83,26 @@ export class ExecuteWorkflowTrigger implements INodeType { | |
default: '', | ||
}, | ||
{ | ||
displayName: 'Input Source', | ||
// eslint-disable-next-line n8n-nodes-base/node-param-display-name-miscased | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. We should probably update this since we're committing to lower case dropdowns. 155 exceptions means it's not a good rule :D |
||
displayName: 'Input data mode', | ||
name: INPUT_SOURCE, | ||
type: 'options', | ||
options: [ | ||
{ | ||
name: 'Using Fields Below', | ||
// eslint-disable-next-line n8n-nodes-base/node-param-display-name-miscased | ||
name: 'Define using fields below', | ||
value: WORKFLOW_INPUTS, | ||
description: 'Provide input fields via UI', | ||
}, | ||
{ | ||
name: 'Using JSON Example', | ||
// eslint-disable-next-line n8n-nodes-base/node-param-display-name-miscased | ||
name: 'Define using JSON example', | ||
value: JSON_EXAMPLE, | ||
description: 'Generate a schema from an example JSON object', | ||
}, | ||
{ | ||
name: 'Using Parent Workflow Data', | ||
// eslint-disable-next-line n8n-nodes-base/node-param-display-name-miscased | ||
name: 'Accept all data', | ||
value: PASSTHROUGH, | ||
description: 'Use all incoming data from the parent workflow', | ||
}, | ||
|
@@ -141,7 +145,7 @@ export class ExecuteWorkflowTrigger implements INodeType { | |
{ | ||
displayName: 'Workflow Inputs', | ||
name: WORKFLOW_INPUTS, | ||
placeholder: 'Add Field', | ||
placeholder: 'Add field', | ||
type: 'fixedCollection', | ||
description: | ||
'Define expected input fields. If no inputs are provided, all data from the calling workflow will be passed through.', | ||
|
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
oops, this is from my review, lets leave it in rather than restart CI? It's a safe change.