Im trying to implement a automatic retry on failed steps in our pipeline but have been getting errors on the way the limit is set. My syntax is below:
retry:
automatic: true
limit: 3
result:
mapping values are not allowed in this context on line ( limit: 3)
I have since removed the limit line and my pipelines now only contain the below:
retry:
automatic: true
I was expecting this to continue to retry until manually stopped but it seems to only try 3 times which is what i originally wanted. Is there a default limit set somewhere? And how can i set my limit as part of the pipeline if id like some steps to attempt more then 3 times?