From 63cfef1212c93e0f27405df8bf0d70eaa92d8b5d Mon Sep 17 00:00:00 2001 From: Sahan Paliskara Date: Tue, 17 Oct 2023 16:59:13 -0700 Subject: [PATCH] Add executorch to hud navbar (#4654) Add executorch to hud navbar Adds executorch to the hud navbar as it's public now :) Co-authored-by: PaliC <> --- torchci/components/NavBar.tsx | 5 +++++ torchci/pages/[repoOwner]/[repoName]/commit/[sha].tsx | 2 ++ 2 files changed, 7 insertions(+) diff --git a/torchci/components/NavBar.tsx b/torchci/components/NavBar.tsx index 210672af49..cb881cfcb7 100644 --- a/torchci/components/NavBar.tsx +++ b/torchci/components/NavBar.tsx @@ -81,6 +81,11 @@ function NavBar() { MiniHUD +
  • + + ExecuTorch + +
  • TorchVision diff --git a/torchci/pages/[repoOwner]/[repoName]/commit/[sha].tsx b/torchci/pages/[repoOwner]/[repoName]/commit/[sha].tsx index 1c3c033966..30bc12df36 100644 --- a/torchci/pages/[repoOwner]/[repoName]/commit/[sha].tsx +++ b/torchci/pages/[repoOwner]/[repoName]/commit/[sha].tsx @@ -56,6 +56,8 @@ export default function Page() { ? "TorchVision" : repoOwner === "pytorch" && repoName === "audio" ? "TorchAudio" + : repoOwner === "pytorch" && repoName === "executorch" + ? "ExecuTorch" : `${repoOwner}/${repoName}`; return (