diff options
Diffstat (limited to 'lib')
-rw-r--r-- | lib/gitlab/ci/pipeline/chain/validate.rb | 10 |
1 files changed, 2 insertions, 8 deletions
diff --git a/lib/gitlab/ci/pipeline/chain/validate.rb b/lib/gitlab/ci/pipeline/chain/validate.rb index e7109425d6c..4c4c8b27be6 100644 --- a/lib/gitlab/ci/pipeline/chain/validate.rb +++ b/lib/gitlab/ci/pipeline/chain/validate.rb @@ -79,22 +79,16 @@ module Gitlab end end - ## TODO, move to Pipeline as `branch_exists?` - # def branch? return @is_branch if defined?(@is_branch) - @is_branch = project.repository - .ref_exists?(Gitlab::Git::BRANCH_REF_PREFIX + pipeline.ref) + @is_branch = project.repository.branch_exists?(pipeline.ref) end - ## TODO, move to pipeline as `tag_exists?` - # def tag? return @is_tag if defined?(@is_tag) - @is_tag = project.repository - .ref_exists?(Gitlab::Git::TAG_REF_PREFIX + pipeline.ref) + @is_tag = project.repository.tag_exists?(pipeline.ref) end def error(message) |