We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0cf9560 commit 7a661b6Copy full SHA for 7a661b6
tinybird/datasources/gitlab_emoji.datasource
@@ -0,0 +1,19 @@
1
+TOKEN "append" APPEND
2
+
3
+# Refer to https://docs.gitlab.com/ee/user/project/integrations/webhook_events.html#emoji-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
+ `note` JSON `json:$.note` DEFAULT '{}',
16
+ `issue` JSON `json:$.issue` DEFAULT '{}'
17
18
+ENGINE "MergeTree"
19
+ENGINE_SORTING_KEY "project_id, user_id"
0 commit comments