Skip to content

Extend yml syntax for only and except to support specifying repository path

Kamil Trzcińśki requested to merge only-syntax into master

This allows to limit execution of jobs to specific repository.

For example:

job:
  only:
    - branches@gitlab-org/gitlab-ce
  except:
    - master@gitlab-org/gitlab-ce

The above will run job for all branches on gitlab-org/gitlab-ce, except master.

@dzaporozhets @JobV @vsizov Please review.

Merge request reports