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

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

module Ci
  class PipelineCreatedEvent < ::Gitlab::EventStore::Event
    def schema
      {
        'type' => 'object',
        'properties' => {
          'pipeline_id' => { 'type' => 'integer' }
        }
      }
    end
  end
end