Skip to content

Commit 4e9aca0

Browse files
authored
Merge pull request #48 from opengovern/fix_team_repository
fix: fixed steampipe for team repo
2 parents e354e9c + 6e4f902 commit 4e9aca0

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

cloudql/github/table_github_team_repository.go

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,9 +13,15 @@ func gitHubTeamRepositoryColumns() []*plugin.Column {
1313
Transform: transform.FromQual("Description.Permission")},
1414
{Name: "team_id", Type: proto.ColumnType_INT, Description: "",
1515
Transform: transform.FromQual("Description.TeamID")},
16+
{Name: "repository_full_name", Type: proto.ColumnType_STRING, Description: "",
17+
Transform: transform.FromQual("Description.RepositoryFullName")},
18+
{Name: "created_at", Type: proto.ColumnType_TIMESTAMP, Description: "",
19+
Transform: transform.FromQual("Description.CreatedAt")},
20+
{Name: "updated_at", Type: proto.ColumnType_TIMESTAMP, Description: "",
21+
Transform: transform.FromQual("Description.UpdatedAt")},
1622
}
1723

18-
return append(teamColumns, sharedRepositoryColumns()...)
24+
return teamColumns
1925
}
2026

2127
func tableGitHubTeamRepository() *plugin.Table {

0 commit comments

Comments
 (0)