Reputation: 360
To trigger pipeline for branches starting with "features/", I'd do:
trigger:
- features/*
But is there a way to trigger for ALL branches? I've tried
trigger:
- *
and
trigger:
- /*
But neither work.
Upvotes: 3
Views: 548