Add conditional filter to Lifecycle Automatic Deployment
When using branching (and semver on each branch) to maintain feature and release branches, I have found that I do not want to auto deploy every build, rather, I want to only auto deploy specific types of branches automatically,
For instance, any build that comes from our master branch, should get auto deployed as far up the chain as possible, including production for continuous deployment. Or a hotfix branch should get auto deployed to a QA environment, while a feature branch should only be created and deployed manually.
If you exposed some powershell or other script with access to the release and release number, I could write a filter to decide when a release should be auto deployed in the life cycle feature.

-
Simon Taubert commented
I'm extremely interested in this!