(triggerId: string)
| 53 | * Returns the GitLab hook event flags to enable for a given trigger. |
| 54 | */ |
| 55 | export function getGitLabEventFlags(triggerId: string): Record<string, boolean> { |
| 56 | return TRIGGER_EVENT_FLAGS[triggerId] ?? { ...ALL_EVENT_FLAGS } |
| 57 | } |
| 58 | |
| 59 | /** |
| 60 | * Generate setup instructions for a specific GitLab webhook event. The webhook |
no outgoing calls
no test coverage detected