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

job_kind_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: dd1d80f806caac4010c7ed27d54e17bb9f0f61d3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
# frozen_string_literal: true

module Types
  module Ci
    class JobKindEnum < BaseEnum
      graphql_name 'CiJobKind'

      value 'BUILD', value: ::Ci::Build, description: 'Standard CI job.'
      value 'BRIDGE', value: ::Ci::Bridge, description: 'Bridge CI job connecting a parent and child pipeline.'
    end
  end
end