aboutsummaryrefslogtreecommitdiffstats
path: root/pkg/aflow/loop.go
Commit message (Collapse)AuthorAgeFilesLines
* pkg/aflow: add explicit DoWhile.MaxIterationsDmitry Vyukov2026-01-271-3/+9
| | | | | | Add DoWhile.MaxIterations and make it mandatory. I think it's useful to make workflow implementer to think explicitly about a reasonable cap on the number of iterations.
* pkg/aflow: add DoWhile loop actionDmitry Vyukov2026-01-241-0/+98
DoWhile represents "do { body } while (cond)" loop. See added test for an example.