In the only
section of my .gitlab-ci.yml
I can match a branch name by regex like:
only:
- /^issue-.*/
and match a branch name for a specific branch and repo like:
only:
- issue-123@mygroup/myproject
But how do I do both? I tried this:
only:
- /^issue-.*@mygroup\/myproject/
but with no success.
I’m using GitLab Community Edition 8.17.4.