You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
<Propertykey="with"name="With Items"description="Run an action or workflow associated with a task multiple times."value={!!task.with}onChange={value=>this.handleTaskProperty('with',value ? {items: 'x in <% ctx(y) %>'} : false)}>
<Propertykey="with"name="With Items"description="Run an action or workflow associated with a task multiple times."value={!!task.with}onChange={value=>this.handleTaskProperty('with',value ? {items: 'x in <% ctx(y) %>'} : false)}>
140
+
<Propertykey="retry"name="Retry"description="Define the retry condition for the task execution."value={!!task.retry}onChange={value=>this.handleTaskProperty('retry',value ? {when: '<% failed() %>'} : false)}>
<StringFieldname="count"value={task.retry.count}className="count-title"onChange={value=>this.handleTaskProperty(['retry','count'],this.getValue(value))}spec={{'default':'enter expression or integer'}}/>
146
+
<StringFieldname="delay (seconds)"value={task.retry.delay}className="delay-title"onChange={value=>this.handleTaskProperty(['retry','delay'],this.getValue(value))}spec={{'default':'enter expression or integer'}}/>
0 commit comments