forked from elastic/kibana
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[code-owners] Add area information to code owner entries (elastic#205143
- Loading branch information
Showing
4 changed files
with
119 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,98 @@ | ||
/* | ||
* Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one | ||
* or more contributor license agreements. Licensed under the "Elastic License | ||
* 2.0", the "GNU Affero General Public License v3.0 only", and the "Server Side | ||
* Public License v 1"; you may not use this file except in compliance with, at | ||
* your election, the "Elastic License 2.0", the "GNU Affero General Public | ||
* License v3.0 only", or the "Server Side Public License, v 1". | ||
*/ | ||
|
||
/** | ||
* Code owner area names | ||
*/ | ||
export const CODE_OWNER_AREAS = ['platform', 'search', 'observability', 'security'] as const; | ||
export type CodeOwnerArea = (typeof CODE_OWNER_AREAS)[number]; | ||
|
||
/** | ||
* Area mappings for code owners | ||
*/ | ||
export const CODE_OWNER_AREA_MAPPINGS: { [area in CodeOwnerArea]: string[] } = { | ||
platform: [ | ||
'elastic/appex-ai-infra', | ||
'elastic/appex-qa', | ||
'elastic/appex-sharedux', | ||
'elastic/docs', | ||
'elastic/eui-team', | ||
'elastic/fleet', | ||
'elastic/kibana-core', | ||
'elastic/kibana-data-discovery', | ||
'elastic/kibana-design', | ||
'elastic/kibana-esql', | ||
'elastic/kibana-localization', | ||
'elastic/kibana-management', | ||
'elastic/kibana-operations', | ||
'elastic/kibana-performance-testing', | ||
'elastic/kibana-presentation', | ||
'elastic/kibana-qa', | ||
'elastic/kibana-reporting-services', | ||
'elastic/kibana-security', | ||
'elastic/kibana-tech-leads', | ||
'elastic/kibana-visualizations', | ||
'elastic/logstash', | ||
'elastic/ml-ui', | ||
'elastic/platform-docs', | ||
'elastic/response-ops', | ||
'elastic/stack-monitoring', | ||
], | ||
search: ['elastic/search-design', 'elastic/search-kibana'], | ||
observability: [ | ||
'elastic/obs-ai-assistant', | ||
'elastic/obs-cloudnative-monitoring', | ||
'elastic/obs-docs', | ||
'elastic/obs-entities', | ||
'elastic/obs-knowledge-team', | ||
'elastic/obs-ux-infra_services-team', | ||
'elastic/obs-ux-logs-team', | ||
'elastic/obs-ux-management-team', | ||
'elastic/obs-ux-onboarding-team', | ||
'elastic/observability-design', | ||
'elastic/observability-ui', | ||
'elastic/observablt-robots', | ||
'elastic/streams-program-team', | ||
], | ||
security: [ | ||
'elastic/kibana-cloud-security-posture', | ||
'elastic/security-asset-management', | ||
'elastic/security-data-analytics', | ||
'elastic/security-defend-workflows', | ||
'elastic/security-design', | ||
'elastic/security-detection-engine', | ||
'elastic/security-detection-rule-management', | ||
'elastic/security-detections-response', | ||
'elastic/security-engineering-productivity', | ||
'elastic/security-entity-analytics', | ||
'elastic/security-generative-ai', | ||
'elastic/security-scalability', | ||
'elastic/security-service-integrations', | ||
'elastic/security-solution', | ||
'elastic/security-threat-hunting', | ||
'elastic/security-threat-hunting-explore', | ||
'elastic/security-threat-hunting-investigations', | ||
], | ||
}; | ||
|
||
/** | ||
* Find what area a code owner belongs to | ||
* | ||
* @param owner Owner to find an area name | ||
* @returns The code owner area if a match for the given owner is found | ||
*/ | ||
export function findAreaForCodeOwner(owner: string): CodeOwnerArea | undefined { | ||
for (const area of CODE_OWNER_AREAS) { | ||
const owners = CODE_OWNER_AREA_MAPPINGS[area]; | ||
|
||
if (owners.includes(owner)) { | ||
return area; | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters