feat: swe title updates (#310)

This commit is contained in:
doprz
2024-10-15 00:46:01 -05:00
committed by GitHub
parent 4cf8c3f964
commit 4629626a31
2 changed files with 54 additions and 2 deletions

View File

@@ -45,6 +45,19 @@ export const LONGHORN_DEVELOPERS_ADMINS = [
{ name: 'Isaiah Rodriguez', role: 'Chief Operations and Design Officer', githubUsername: 'IsaDavRod' },
] as const satisfies TeamMember[];
export const LONGHORN_DEVELOPERS_SWE = [
{ name: 'Samuel Gunter', role: 'Software Engineer', githubUsername: 'Samathingamajig' },
{ name: 'Derek Chen', role: 'Software Engineer', githubUsername: 'DereC4' },
{ name: 'Casey Charleston', role: 'Software Engineer', githubUsername: 'caseycharleston' },
{ name: 'Vinson', role: 'Software Engineer', githubUsername: 'vinsonzheng499' },
{ name: 'Vivek', role: 'Software Engineer', githubUsername: 'vivek12311' },
] as const satisfies TeamMember[];
/**
* Represents the GitHub usernames of the SWEs in the LONGHORN_DEVELOPERS_SWE array.
*/
export type LD_SWE_GITHUB_USERNAMES = (typeof LONGHORN_DEVELOPERS_SWE)[number]['githubUsername'];
/**
* Represents the GitHub usernames of the admins in the LONGHORN_DEVELOPERS_ADMINS array.
*/