File tree Expand file tree Collapse file tree 1 file changed +25
-0
lines changed
Expand file tree Collapse file tree 1 file changed +25
-0
lines changed Original file line number Diff line number Diff line change 1+ TOKEN "append" APPEND
2+
3+ # Refer to https://docs.gitlab.com/ee/user/project/integrations/webhook_events.html#work-item-events
4+
5+ TAGS "gitlab"
6+
7+ SCHEMA >
8+ `object_kind` String `json:$.object_kind`,
9+ `event_type` String `json:$.event_type`,
10+ `user_id` String `json:$.user.id`,
11+ `user` JSON `json:$.user`,
12+ `project_id` String `json:$.project.id`,
13+ `project` JSON `json:$.project`,
14+ `object_attributes` JSON `json:$.object_attributes`,
15+ `repository_name` String `json:$.repository.name`,
16+ `repository` JSON `json:$.repository`,
17+ `assignees` Array(JSON) `json:$.assignees` DEFAULT '[]',
18+ `assignee` JSON `json:$.assignee` DEFAULT '{}',
19+ `labels` Array(JSON) `json:$.labels` DEFAULT '[]',
20+ `changes` JSON `json:$.changes` DEFAULT '{}',
21+ `reviewers` Array(JSON) `json:$.reviewers` DEFAULT '[]'
22+
23+
24+ ENGINE "MergeTree"
25+ ENGINE_SORTING_KEY "project_id, repository_name, user_id"
You can’t perform that action at this time.
0 commit comments