Azure / acr-builder

Azure Container Registry Build Runner
MIT License
38 stars 35 forks source link

Support whenAny #421

Closed ehotinger closed 1 year ago

ehotinger commented 5 years ago

Support whenAny: []string, which is the same as when except it will begin evaluation if any of the clauses evaluate to true.

I.e., when: ['A', 'B'] => A && B, whenAny: ['A', 'B'] => A || B