Add latest changes from gitlab-org/gitlab@master

This commit is contained in:
GitLab Bot
2023-08-10 06:09:29 +00:00
parent c285833364
commit 76c4dd062c
65 changed files with 1965 additions and 398 deletions

View File

@ -0,0 +1,16 @@
# frozen_string_literal: true
module Repositories
class DefaultBranchChangedEvent < ::Gitlab::EventStore::Event
def schema
{
'type' => 'object',
'properties' => {
'container_id' => { 'type' => 'integer' },
'container_type' => { 'type' => 'string' }
},
'required' => %w[container_id container_type]
}
end
end
end