summaryrefslogtreecommitdiff
path: root/lib/gitlab/ci/pipeline/chain/validate/repository.rb
blob: 70a4cfdbdea39184a2874bb2d9292d700a65535c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
module Gitlab
  module Ci
    module Pipeline
      module Chain
        module Validate
          class Repository < Chain::Base
            include Chain::Helpers

            def perform!
              unless branch_exists? || tag_exists?
                return error('Reference not found')
              end

              ## TODO, we check commit in the service, that is why
              # there is no repository access here.
              #
              unless pipeline.sha
                return error('Commit not found')
              end
            end

            def break?
              @pipeline.errors.any?
            end
          end
        end
      end
    end
  end
end