27 lines
578 B
Ruby
27 lines
578 B
Ruby
module Gitlab
|
|
module Ci
|
|
module Pipeline
|
|
module Chain
|
|
module Validate
|
|
class Repository < Chain::Base
|
|
include Chain::Helpers
|
|
|
|
def perform!
|
|
unless @command.branch_exists? || @command.tag_exists?
|
|
return error('Reference not found')
|
|
end
|
|
|
|
unless @command.sha
|
|
return error('Commit not found')
|
|
end
|
|
end
|
|
|
|
def break?
|
|
@pipeline.errors.any?
|
|
end
|
|
end
|
|
end
|
|
end
|
|
end
|
|
end
|
|
end
|