Welcome to mirror list, hosted at ThFree Co, Russian Federation.

pipeline_merge_request_event_type_enum.rb « ci « types « graphql « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: a1236b8f2c19404e78d9b9036c452764e0859b22 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
# frozen_string_literal: true

module Types
  module Ci
    class PipelineMergeRequestEventTypeEnum < BaseEnum
      graphql_name 'PipelineMergeRequestEventType'
      description 'Event type of the pipeline associated with a merge request'

      value 'MERGED_RESULT',
            'Pipeline run on the changes from the source branch combined with the target branch.',
            value: :merged_result
      value 'DETACHED',
            'Pipeline run on the changes in the merge request source branch.',
            value: :detached
    end
  end
end

Types::Ci::PipelineMergeRequestEventTypeEnum.prepend_mod