Skip to content

Commit

Permalink
placeholder for branch_name to show up
Browse files Browse the repository at this point in the history
after the backend emits that
  • Loading branch information
mcmonkey4eva committed Aug 23, 2024
1 parent fc84cbb commit 8cddfaf
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 1 addition & 1 deletion pages/workflow/[id].tsx
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ function WorkflowResultDetail() {
target="_blank"
rel="noopener noreferrer"
href={`https://github.com/${workflowResult.git_repo}`}
>{workflowResult?.git_repo}</a>
>{workflowResult?.git_repo}</a> - {workflowResult.branch_name}
{workflowResult?.pr_number ?? <span>
<a
className="text-blue-500 hover:text-blue-700 underline hover:no-underline "
Expand Down
2 changes: 2 additions & 0 deletions src/api/generated.ts
Original file line number Diff line number Diff line change
Expand Up @@ -499,6 +499,8 @@ export interface ActionJobResult {
commit_time?: number;
/** CUDA version used */
cuda_version?: string;
/** Name of the relevant git branch */
branch_name?: string;
/** The end time of the job as a Unix timestamp. */
end_time?: number;
/** The repository name */
Expand Down

0 comments on commit 8cddfaf

Please sign in to comment.