steampipe-plugin-github icon indicating copy to clipboard operation
steampipe-plugin-github copied to clipboard

Added support for retrieving specific file content in the github_repository_content table Closes #444

Open ParthaI opened this issue 7 months ago • 2 comments

Example query results

Results
> select type, name, path, path_raw,mode, line_count from github_repository_content where repository_full_name = 'turbot/steampipe-plugin-github' and path = 'docs/tables/github_audit_log.md'
+------+---------------------+---------------------------------+----------------------------------------------+------+------------+
| type | name                | path                            | path_raw                                     | mode | line_count |
+------+---------------------+---------------------------------+----------------------------------------------+------+------------+
| blob | github_audit_log.md | docs/tables/github_audit_log.md | ZG9jcy90YWJsZXMvZ2l0aHViX2F1ZGl0X2xvZy5tZA== | 0    | 204        |
+------+---------------------+---------------------------------+----------------------------------------------+------+------------+

ParthaI avatar Jul 23 '24 16:07 ParthaI