diff --git a/components/GitHubEventAction.tsx b/components/GitHubEventAction.tsx index 4bae074..5e3185b 100644 --- a/components/GitHubEventAction.tsx +++ b/components/GitHubEventAction.tsx @@ -78,6 +78,9 @@ function GitHubEventAction({type, payload}: GitHubEventActionProps): JSX.Element const sizeStr = size ? size : '1'; // should we use 'a'? return pushed {sizeStr} commit{size !== 1 && 's'} to; } + case 'PublicEvent': { + return made a new repository public:; + } default: return unknown; }