formats/GitHubTeam.Format.ps1xml
<?xml version="1.0" encoding="utf-8"?> <Configuration> <ViewDefinitions> <View> <Name>GitHubTeamTable</Name> <ViewSelectedBy> <TypeName>GitHubTeam</TypeName> </ViewSelectedBy> <TableControl> <TableHeaders> <TableColumnHeader> <Label>Name</Label> </TableColumnHeader> <TableColumnHeader> <Label>Owner</Label> </TableColumnHeader> </TableHeaders> <TableRowEntries> <TableRowEntry> <TableColumnItems> <TableColumnItem> <ScriptBlock> if ($Host.UI.SupportsVirtualTerminal -and $script:GitHub.EnvironmentType -ne 'GHA') { $PSStyle.FormatHyperlink($_.Name,$_.Url) } else { $_.Name } </ScriptBlock> </TableColumnItem> <TableColumnItem> <PropertyName>Owner</PropertyName> </TableColumnItem> </TableColumnItems> </TableRowEntry> </TableRowEntries> </TableControl> </View> </ViewDefinitions> </Configuration> |