We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
RepositoryInvitation
1 parent 865cfcd commit 4cfc2b5Copy full SHA for 4cfc2b5
src/typesGithub.ts
@@ -19,6 +19,7 @@ export type SubjectType =
19
| 'Issue'
20
| 'PullRequest'
21
| 'Release'
22
+ | 'RepositoryInvitation'
23
| 'RepositoryVulnerabilityAlert';
24
25
export interface Notification {
src/utils/github-api.ts
@@ -69,6 +69,8 @@ export function getNotificationTypeIcon(
69
return Octicons.GitPullRequestIcon;
70
case 'Release':
71
return Octicons.TagIcon;
72
+ case 'RepositoryInvitation':
73
+ return Octicons.MailIcon;
74
case 'RepositoryVulnerabilityAlert':
75
return Octicons.AlertIcon;
76
default:
0 commit comments