Team member licenses
Support Operations policies page for team member licenses
The purpose of Customer Support Operations is to enable GitLab to provide delightful customer experiences by:
| Name | Role |
|---|---|
| Carlo Curato | Director, Business Technology Operations |
| Michael Beltran | Sr. Manager, IT |
| Jason Colyer | Fullstack Engineer, Customer Support Operations |
| Nabeel Bilgrami | Customer Support Operations Specialist |
| Alyssa Villa | Customer Support Operations Specialist |
| Dylan Tragjasi | Customer Support Operations Specialist |
| Sarah Cole | Customer Support Operations Specialist |
| Rene Verschoor | Customer Support Operations Specialist |
Or you can reach out to us in Slack via #support_operations.
graph TD;
Start--> Triage;
Triage--> Type;
Type-->|Bug| BugDevelopment
Type-->|Feature| FeaturePlanning
BugDevelopment--> BugValidation
BugValidation--> BugValidated
BugValidated-->|No| BugDevelopment
BugValidated-->|Yes| Implementation
FeaturePlanning--> FeatureScheduling
FeatureScheduling--> FeatureIsItTime
FeatureIsItTime-->|No| FeatureQueued
FeatureIsItTime-->|Yes| FeatureDevelopment
FeatureDevelopment--> FeatureValidation
FeatureQueued--> FeatureIsItTime
FeatureValidation--> FeatureValidated
FeatureValidated-->|No| FeatureDevelopment
FeatureValidated-->|Yes| Implementation
Implementation--> Completion
Completion--> End
Start(Issue created)
Triage(Triage stage)
Type{Request type?}
BugDevelopment(Development stage)
BugValidation(Validation stage)
BugValidated{Was it validated?}
FeaturePlanning(Planning stage)
FeatureScheduling(Scheduling stage)
FeatureIsItTime{Is it being worked in the current iteration?}
FeatureQueued(Queued stage)
FeatureDevelopment(Development stage)
FeatureValidation(Validation stage)
FeatureValidated{Was it validated?}
Implementation(Implementation stage)
Completion(Completion stage)
End(Issue closed)
7d49549f)