Clarify continue_on_failure vs next_loop_on_failure help text in loop blocks (#4731)

Co-authored-by: Suchintan Singh <suchintan@skyvern.com>
This commit is contained in:
Suchintan
2026-02-12 20:57:53 -05:00
committed by GitHub
parent 0959dae9d1
commit 59b21fc0d8

View File

@@ -22,9 +22,9 @@ export const baseHelpTooltipContent = {
totpIdentifier:
"If you are running multiple workflows at once, you will need to give the block an identifier to know that this TOTP goes with this block.",
continueOnFailure:
"Allow the workflow to continue if it encounters a failure.",
"If this block fails, skip the failure and continue to the next block in the current iteration. The remaining blocks in the same iteration will still run.",
nextLoopOnFailure:
"When inside a for loop, continue to the next iteration if this block fails.",
"If this block fails, skip the remaining blocks in the current iteration and jump to the next loop iteration.",
includeActionHistoryInVerification:
"Include the action history in the completion verification.",
engine:
@@ -77,7 +77,7 @@ export const helpTooltips = {
loopValue:
"Define the values to iterate over. Use a parameter reference or natural language (e.g., 'Extract links of the top 2 posts'). Natural language automatically creates an extraction block that generates a list of string values. Use {{ current_value }} in the loop to get the current iteration value.",
nextLoopOnFailure:
"When enabled, if any block inside the loop fails, the loop will immediately jump to the next iteration instead of stopping.",
"If any block inside the loop fails, skip the remaining blocks in the current iteration and jump to the next loop iteration instead of stopping the entire loop.",
},
sendEmail: {
...baseHelpTooltipContent,