Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add column security to table github_community_profile Closes #179 #180

Merged
merged 3 commits into from
Aug 10, 2022

Conversation

karanpopat
Copy link
Contributor

Example query results

Results
> select 
  repository_full_name, 
  security ->> 'html_url' as security_file_url,
  security ->> 'name' as security_file_name
from
  github_community_profile c 
  join github_my_repository r on r.full_name = c.repository_full_name
  where security is not null;
+-----------------------------------+----------------------------------------------------------------------------+--------------------+
| repository_full_name              | security_file_url                                                          | security_file_name |
+-----------------------------------+----------------------------------------------------------------------------+--------------------+
| turbot/steampipe                  | https://github.com/turbot/steampipe/blob/main/SECURITY.md                  | SECURITY.md        |
| turbot/steampipe-plugin-aws       | https://github.com/turbot/steampipe-plugin-aws/blob/main/SECURITY.md       | SECURITY.md        |
| turbot/steampipe-plugin-azuread   | https://github.com/turbot/steampipe-plugin-azuread/blob/main/SECURITY.md   | SECURITY.md        |
| turbot/steampipe-plugin-bitbucket | https://github.com/turbot/steampipe-plugin-bitbucket/blob/main/SECURITY.md | SECURITY.md        |
| turbot/steampipe-plugin-okta      | https://github.com/turbot/steampipe-plugin-okta/blob/main/SECURITY.md      | SECURITY.md        |
| turbot/steampipe-plugin-oci       | https://github.com/turbot/steampipe-plugin-oci/blob/main/SECURITY.md       | SECURITY.md        |
+-----------------------------------+----------------------------------------------------------------------------+--------------------+

@karanpopat karanpopat self-assigned this Jul 29, 2022
@karanpopat karanpopat linked an issue Jul 29, 2022 that may be closed by this pull request
@misraved misraved merged commit 3c98a5b into main Aug 10, 2022
@misraved misraved deleted the issue_github_community_profile branch August 10, 2022 19:35
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

Add column security to table github_community_profile
4 participants