Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions torchci/components/CommitStatus.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -119,6 +119,11 @@ export default function CommitStatus({
const session = useSession();
const isAuthenticated = session.status === "authenticated";

// Populate the repo field if it's not yet set in the job data
jobs.forEach((job) => {
job.repo = job.repo ?? `${repoOwner}/${repoName}`;
});

return (
<>
<VersionControlLinks
Expand Down