Skip to content

Commit

Permalink
fix: add repo name filter in params
Browse files Browse the repository at this point in the history
  • Loading branch information
artaasadi committed Dec 20, 2024
1 parent 12ce187 commit 20bd231
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions steampipe-plugin-github/github/table_github_repository.go
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@ func sharedRepositoryColumns() []*plugin.Column {
Name: "id",
Type: proto.ColumnType_INT,
Description: "The numeric ID of the repository.",
<<<<<<< HEAD
Transform: transform.FromField("Description.GitHubRepoID"),
},
{
Expand All @@ -36,6 +37,13 @@ func sharedRepositoryColumns() []*plugin.Column {
{
Name: "name",
Type: proto.ColumnType_STRING,
=======
Transform: transform.FromField("Description.ID")},
{Name: "node_id", Type: proto.ColumnType_STRING,
Description: "The node ID of the repository.",
Transform: transform.FromField("Description.NodeID")},
{Name: "name", Type: proto.ColumnType_STRING,
>>>>>>> ffc94e0 (fix: add repo name filter in params)
Description: "The name of the repository.",
Transform: transform.FromField("Description.Name"),
},
Expand Down

0 comments on commit 20bd231

Please sign in to comment.