We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7db4ca8 commit 04ab0b0Copy full SHA for 04ab0b0
1 file changed
apps/sim/triggers/gitlab/utils.ts
@@ -38,6 +38,9 @@ const ALL_EVENT_FLAGS = {
38
tag_push_events: true,
39
} as const
40
41
+// Tag pushes (object_kind 'tag_push') only flow through the all-events trigger;
42
+// there is no dedicated single-event trigger for them. A future "GitLab Tag Push"
43
+// trigger would need its own object_kind mapping in TRIGGER_OBJECT_KINDS above.
44
const TRIGGER_EVENT_FLAGS: Record<string, Record<string, boolean>> = {
45
gitlab_push: { push_events: true },
46
gitlab_merge_request: { merge_requests_events: true },
0 commit comments