diff options
author | Lukas Eipert <leipert@gitlab.com> | 2019-03-29 18:15:23 +0100 |
---|---|---|
committer | Lukas Eipert <leipert@gitlab.com> | 2019-03-29 18:17:49 +0100 |
commit | 23618d91b18fab21b62e38872d06fb7ef72b011e (patch) | |
tree | cc4f3cc9c5036af93ada9c79dee7057aec84e488 /.gitlab-ci.yml | |
parent | b4cc639f80407285e69bdb5cb2bda7dcd74c87e6 (diff) | |
download | gitlab-ce-23618d91b18fab21b62e38872d06fb7ef72b011e.tar.gz |
Fix GitLab CI branch matching pattern
Diffstat (limited to '.gitlab-ci.yml')
-rw-r--r-- | .gitlab-ci.yml | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index e7918fb6600..ab38c87039e 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -249,8 +249,8 @@ package-and-qa: - ./scripts/trigger-build omnibus when: manual only: - - //@gitlab-org/gitlab-ce - - //@gitlab-org/gitlab-ee + - /.+/@gitlab-org/gitlab-ce + - /.+/@gitlab-org/gitlab-ee # Review docs base .review-docs: &review-docs @@ -685,10 +685,10 @@ gitlab:assets:compile: - public/assets/ <<: *assets-compile-cache only: - - //@gitlab-org/gitlab-ce - - //@gitlab-org/gitlab-ee - - //@gitlab/gitlabhq - - //@gitlab/gitlab-ee + - /.+/@gitlab-org/gitlab-ce + - /.+/@gitlab-org/gitlab-ee + - /.+/@gitlab/gitlabhq + - /.+/@gitlab/gitlab-ee tags: - docker - gitlab-org @@ -990,7 +990,7 @@ no_ee_check: script: - scripts/no-ee-check only: - - //@gitlab-org/gitlab-ce + - /.+/@gitlab-org/gitlab-ce # GitLab Review apps .review-build-cng-base: &review-build-cng-base |