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 table github_actions_repository_runner closes #140 #141

Merged
merged 7 commits into from
Feb 8, 2022

Conversation

ParthaI
Copy link
Contributor

@ParthaI ParthaI commented Feb 2, 2022

Example query results

Results
> select * from github_action_runner where repository_full_name = 'ParthaI/turbot-mods'
+----------------------+----+---------------------+-------+---------+-------+-----------------------------------------------------------------------------------------------------------------------------
| repository_full_name | id | name                | os    | status  | busy  | labels                                                                                                                      
+----------------------+----+---------------------+-------+---------+-------+-----------------------------------------------------------------------------------------------------------------------------
| ParthaI/turbot-mods  | 2  | Parthas-MacBook-Pro | macos | offline | false | [{"id":1,"name":"self-hosted","type":"read-only"},{"id":2,"name":"macOS","type":"read-only"},{"id":3,"name":"X64","type":"re
+----------------------+----+---------------------+-------+---------+-------+-----------------------------------------------------------------------------------------------------------------------------

> select
  repository_full_name,
  id,
  name,
  os,
  busy
from
  github_action_runner
where
  repository_full_name = 'ParthaI/turbot-mods' and not busy;
+----------------------+----+---------------------+-------+-------+
| repository_full_name | id | name                | os    | busy  |
+----------------------+----+---------------------+-------+-------+
| ParthaI/turbot-mods  | 2  | Parthas-MacBook-Pro | macos | false |
+----------------------+----+---------------------+-------+-------+

@ParthaI ParthaI self-assigned this Feb 2, 2022
@ParthaI ParthaI linked an issue Feb 2, 2022 that may be closed by this pull request
@ParthaI ParthaI changed the title Add table github_action_runner closes #140 Add table github_actions_repository_runner closes #140 Feb 4, 2022
@ParthaI ParthaI linked an issue Feb 4, 2022 that may be closed by this pull request
Copy link
Contributor

@bigdatasourav bigdatasourav left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

LGTM

@bigdatasourav bigdatasourav merged commit cddfa68 into main Feb 8, 2022
@bigdatasourav bigdatasourav deleted the issue-140 branch February 8, 2022 06:50
mheiges pushed a commit to mheiges/steampipe-plugin-github that referenced this pull request May 6, 2022
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 table github_action_runner Add tables github_action_*
2 participants