Skip to content

Commit

Permalink
add fields to query
Browse files Browse the repository at this point in the history
  • Loading branch information
Trey Ivy committed Nov 21, 2024
1 parent ea0b20d commit 6fc17f6
Show file tree
Hide file tree
Showing 5 changed files with 19 additions and 14 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -244,6 +244,14 @@ fragment BazelInvocationInfo on BazelInvocation {
repoURL
refs
runID
workflow
workspace
action
eventName
job
runnerName
runnerArch
runnerOs
}
}
`);
Expand Down
7 changes: 2 additions & 5 deletions frontend/src/components/SourceControlDisplay/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -56,18 +56,15 @@ const SourceControlDisplay: React.FC<{
<Descriptions.Item label="Workflow">
{sourceControlData?.workflow}
</Descriptions.Item>
<Descriptions.Item label="Workspace">
{sourceControlData?.workspace}
<Descriptions.Item label="Job">
{sourceControlData?.job}
</Descriptions.Item>
<Descriptions.Item label="Action">
{sourceControlData?.action}
</Descriptions.Item>
<Descriptions.Item label="Event Name">
{sourceControlData?.eventName}
</Descriptions.Item>
<Descriptions.Item label="Job">
{sourceControlData?.job}
</Descriptions.Item>
<Descriptions.Item label="Runner Name">
{sourceControlData?.runnerName}
</Descriptions.Item>
Expand Down
4 changes: 2 additions & 2 deletions frontend/src/graphql/__generated__/gql.ts

Large diffs are not rendered by default.

Loading

0 comments on commit 6fc17f6

Please sign in to comment.