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

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

module Types
  module Ci
    module Config
      class StatusEnum < BaseEnum
        graphql_name 'CiConfigStatus'
        description 'Values for YAML processor result'

        value 'VALID', 'The configuration file is valid.', value: :valid
        value 'INVALID', 'The configuration file is not valid.', value: :invalid
      end
    end
  end
end