summaryrefslogtreecommitdiff
path: root/lib/gitlab/ci/pipeline/chain/validate/repository.rb
blob: 9699c24e5b6b24053f25170b6deb540ee5ff5877 (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
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