Skip to content

Commit 181b032

Browse files
authored
[CRCR] Rename HUD pages /oot → /crcr (#8142)
## Summary Renames the HUD page routes from `/oot` to `/crcr` per maintainer feedback from @malfet and @jathu to align with the Cross-Repository CI Relay (CRCR) naming convention. **Changes:** - `torchci/pages/oot/` → `torchci/pages/crcr/` (route: `hud.pytorch.org/oot` → `hud.pytorch.org/crcr`) - Internal links updated (`/oot/org/repo` → `/crcr/org/repo`) - Page titles updated ("Out-of-Tree CI" → "Cross-Repository CI" / "CRCR CI") ## Test plan - [ ] Verify `hud.pytorch.org/crcr` loads the summary page - [ ] Verify `hud.pytorch.org/crcr/{org}/{repo}` loads the per-backend dashboard - [ ] Verify back link on dashboard points to `/crcr` CC @groenenboomj @jewelkm89
1 parent 16cd759 commit 181b032

2 files changed

Lines changed: 6 additions & 6 deletions

File tree

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -253,15 +253,15 @@ export default function OotBackendPage() {
253253
return (
254254
<>
255255
<Head>
256-
<title>{repoFullName}OOT CI | PyTorch HUD</title>
256+
<title>{repoFullName}CRCR CI | PyTorch HUD</title>
257257
</Head>
258258
<Stack spacing={3} sx={{ p: 3, maxWidth: 1600, mx: "auto" }}>
259259
<Box display="flex" justifyContent="space-between" alignItems="center">
260260
<Stack spacing={0.5}>
261261
<Typography variant="h4">{repoFullName}</Typography>
262-
<NextLink href="/oot" passHref legacyBehavior>
262+
<NextLink href="/crcr" passHref legacyBehavior>
263263
<Link variant="body2" underline="hover">
264-
← Back to OOT Summary
264+
← Back to CRCR Summary
265265
</Link>
266266
</NextLink>
267267
</Stack>
Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,7 @@ function OotSummaryTable({ days }: { days: number }) {
109109
<TableRow key={row.repo} hover>
110110
<TableCell>
111111
<NextLink
112-
href={`/oot/${org}/${repo}`}
112+
href={`/crcr/${org}/${repo}`}
113113
passHref
114114
legacyBehavior
115115
>
@@ -150,11 +150,11 @@ export default function OotSummaryPage() {
150150
return (
151151
<>
152152
<Head>
153-
<title>Out-of-Tree CI Summary | PyTorch HUD</title>
153+
<title>Cross-Repository CI Summary | PyTorch HUD</title>
154154
</Head>
155155
<Stack spacing={3} sx={{ p: 3, maxWidth: 1400, mx: "auto" }}>
156156
<Box display="flex" justifyContent="space-between" alignItems="center">
157-
<Typography variant="h4">Out-of-Tree CI Summary</Typography>
157+
<Typography variant="h4">Cross-Repository CI Summary</Typography>
158158
<FormControl size="small" sx={{ minWidth: 140 }}>
159159
<InputLabel>Time Range</InputLabel>
160160
<Select

0 commit comments

Comments
 (0)