Skip to content

Commit c5b33b9

Browse files
committed
fix: udpate columns descriptions
1 parent f0cefec commit c5b33b9

31 files changed

+66
-66
lines changed

cloudql/github/table_github_actions_artifact.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,13 +31,13 @@ func tableGitHubActionsArtifact() *plugin.Table {
3131
Name: "repository_name",
3232
Type: proto.ColumnType_STRING,
3333
Transform: transform.FromField("Description.RepositoryName"),
34-
Description: "",
34+
Description: "repository name",
3535
},
3636
{
3737
Name: "organization",
3838
Type: proto.ColumnType_STRING,
3939
Transform: transform.FromField("Description.Organization"),
40-
Description: "",
40+
Description: "organization name",
4141
},
4242
{
4343
Name: "name",

cloudql/github/table_github_actions_runner.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,13 +31,13 @@ func tableGitHubActionsRepositoryRunner() *plugin.Table {
3131
Name: "repository_name",
3232
Type: proto.ColumnType_STRING,
3333
Transform: transform.FromField("Description.RepositoryName"),
34-
Description: "",
34+
Description: "repository name",
3535
},
3636
{
3737
Name: "organization",
3838
Type: proto.ColumnType_STRING,
3939
Transform: transform.FromField("Description.Organization"),
40-
Description: "",
40+
Description: "organization name",
4141
},
4242
{
4343
Name: "id",

cloudql/github/table_github_actions_secret.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,13 +32,13 @@ func tableGitHubActionsRepositorySecret() *plugin.Table {
3232
Name: "repository_name",
3333
Type: proto.ColumnType_STRING,
3434
Transform: transform.FromField("Description.RepositoryName"),
35-
Description: "",
35+
Description: "repository name",
3636
},
3737
{
3838
Name: "organization",
3939
Type: proto.ColumnType_STRING,
4040
Transform: transform.FromField("Description.Organization"),
41-
Description: "",
41+
Description: "organization name",
4242
},
4343
{
4444
Name: "name",

cloudql/github/table_github_actions_workflow_run.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -25,19 +25,19 @@ func tableGitHubActionsRepositoryWorkflowRun() *plugin.Table {
2525
Name: "repository_full_name",
2626
Type: proto.ColumnType_STRING,
2727
Transform: transform.FromField("Description.RepositoryFullName"),
28-
Description: "",
28+
Description: "repository full name",
2929
},
3030
{
3131
Name: "organization",
3232
Type: proto.ColumnType_STRING,
3333
Transform: transform.FromField("Description.Organization"),
34-
Description: "",
34+
Description: "organization name",
3535
},
3636
{
3737
Name: "repository_name",
3838
Type: proto.ColumnType_STRING,
3939
Transform: transform.FromField("Description.RepositoryName"),
40-
Description: "",
40+
Description: "repository name",
4141
},
4242
{
4343
Name: "id",

cloudql/github/table_github_artifact_ai_model.go

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -23,13 +23,13 @@ func tableGitHubArtifactAIModel() *plugin.Table {
2323
Name: "name",
2424
Type: proto.ColumnType_STRING,
2525
Transform: transform.FromField("Description.Name"),
26-
Description: "",
26+
Description: "name",
2727
},
2828
{
2929
Name: "repository_id",
3030
Type: proto.ColumnType_STRING,
3131
Transform: transform.FromField("Description.RepositoryID"),
32-
Description: "",
32+
Description: "repository id",
3333
},
3434
{
3535
Name: "repository_full_name",
@@ -41,13 +41,13 @@ func tableGitHubArtifactAIModel() *plugin.Table {
4141
Name: "repository_name",
4242
Type: proto.ColumnType_STRING,
4343
Transform: transform.FromField("Description.RepositoryName"),
44-
Description: "",
44+
Description: "repository name",
4545
},
4646
{
4747
Name: "extensions",
4848
Type: proto.ColumnType_JSON,
4949
Transform: transform.FromField("Description.Extensions"),
50-
Description: "",
50+
Description: "extention",
5151
},
5252
}),
5353
}

cloudql/github/table_github_artifact_dockerfile.go

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -23,19 +23,19 @@ func tableGitHubArtifactDockerFile() *plugin.Table {
2323
Name: "repository_full_name",
2424
Type: proto.ColumnType_STRING,
2525
Transform: transform.FromField("Description.RepositoryFullName"),
26-
Description: "",
26+
Description: "repository full name",
2727
},
2828
{
2929
Name: "organization",
3030
Type: proto.ColumnType_STRING,
3131
Transform: transform.FromField("Description.Organization"),
32-
Description: "",
32+
Description: "organization name",
3333
},
3434
{
3535
Name: "repository_name",
3636
Type: proto.ColumnType_STRING,
3737
Transform: transform.FromField("Description.RepositoryName"),
38-
Description: "",
38+
Description: "repository name",
3939
},
4040
{
4141
Name: "sha",
@@ -91,7 +91,7 @@ func tableGitHubArtifactDockerFile() *plugin.Table {
9191
Name: "images",
9292
Type: proto.ColumnType_JSON,
9393
Transform: transform.FromField("Description.Images"),
94-
Description: ""},
94+
Description: "images"},
9595
}),
9696
}
9797
}

cloudql/github/table_github_branch.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,13 +26,13 @@ func tableGitHubBranch() *plugin.Table {
2626
Name: "organization",
2727
Type: proto.ColumnType_STRING,
2828
Transform: transform.FromField("Description.Organization"),
29-
Description: "",
29+
Description: "organization name",
3030
},
3131
{
3232
Name: "repository_name",
3333
Type: proto.ColumnType_STRING,
3434
Transform: transform.FromField("Description.RepositoryName"),
35-
Description: "",
35+
Description: "repository name",
3636
},
3737
{
3838
Name: "name",

cloudql/github/table_github_branch_protection.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,13 +31,13 @@ func tableGitHubBranchProtection() *plugin.Table {
3131
Name: "organization",
3232
Type: proto.ColumnType_STRING,
3333
Transform: transform.FromField("Description.Organization"),
34-
Description: "",
34+
Description: "organization name",
3535
},
3636
{
3737
Name: "repository_name",
3838
Type: proto.ColumnType_STRING,
3939
Transform: transform.FromField("Description.RepositoryName"),
40-
Description: "",
40+
Description: "repository name",
4141
},
4242
{
4343
Name: "id",

cloudql/github/table_github_commit.go

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -25,19 +25,19 @@ func tableGitHubCommit() *plugin.Table {
2525
Name: "repository_full_name",
2626
Type: proto.ColumnType_STRING,
2727
Transform: transform.FromField("Description.RepositoryFullName"),
28-
Description: "",
28+
Description: "repository full name",
2929
},
3030
{
3131
Name: "organization",
3232
Type: proto.ColumnType_STRING,
3333
Transform: transform.FromField("Description.Organization"),
34-
Description: "",
34+
Description: "organization name",
3535
},
3636
{
3737
Name: "repository_name",
3838
Type: proto.ColumnType_STRING,
3939
Transform: transform.FromField("Description.RepositoryName"),
40-
Description: "",
40+
Description: "repository name",
4141
},
4242
{
4343
Name: "sha",
@@ -49,7 +49,7 @@ func tableGitHubCommit() *plugin.Table {
4949
Name: "node_id",
5050
Type: proto.ColumnType_STRING,
5151
Transform: transform.FromField("Description.NodeID"),
52-
Description: "",
52+
Description: "node id",
5353
},
5454
{
5555
Name: "commit_detail",
@@ -73,7 +73,7 @@ func tableGitHubCommit() *plugin.Table {
7373
Name: "comments_url",
7474
Type: proto.ColumnType_STRING,
7575
Transform: transform.FromField("Description.CommentsURL"),
76-
Description: "",
76+
Description: "comments url",
7777
},
7878
{
7979
Name: "author",

cloudql/github/table_github_container_package.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ func tableGitHubContainerPackage() *plugin.Table {
2727
Name: "organization",
2828
Type: proto.ColumnType_STRING,
2929
Transform: transform.FromField("Description.Organization"),
30-
Description: "",
30+
Description: "organization name",
3131
},
3232
{
3333
Name: "digest",

0 commit comments

Comments
 (0)