debian-mirror-gitlab/app/events/ci/pipeline_created_event.rb

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

16 lines
303 B
Ruby
Raw Normal View History

2022-03-02 08:16:31 +05:30
# frozen_string_literal: true
module Ci
class PipelineCreatedEvent < ::Gitlab::EventStore::Event
def schema
{
'type' => 'object',
2022-06-21 17:19:12 +05:30
'required' => ['pipeline_id'],
2022-03-02 08:16:31 +05:30
'properties' => {
'pipeline_id' => { 'type' => 'integer' }
}
}
end
end
end