The target branch regex allows to limit the execution of this job to certain branches (or tags). Any branch (or tags) matching the specified pattern triggers the job. No filtering is performed if the field is left empty.

* If only branch regex is provided, tag push will be ignored unless regex for tag(s) starting with ^refs/tags/ is added. See the example below.

Examples:

# Allow execution for debug and release branches: (.*debug.*|.*release.*) 
# Ignore any branch with `Release` or `release` as subword: ^(?:(?![R|r]elease).)*$ 
# Allow execution for all tags 和 master branch:(^refs\/tags\/.+)|master