summaryrefslogtreecommitdiff
path: root/lib/gitlab/ci/pipeline/chain/helpers.rb
blob: bf1380a1da911f2e320325860ba39266aaf0d924 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
module Gitlab
  module Ci
    module Pipeline
      module Chain
        module Helpers
          def error(message)
            pipeline.errors.add(:base, message)
          end
        end
      end
    end
  end
end