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_search_pull_request. Closes #110 #111

Merged
merged 3 commits into from
Dec 6, 2021
Merged

Conversation

c0d3r-arnab
Copy link
Contributor

@c0d3r-arnab c0d3r-arnab commented Nov 24, 2021

Example query results

Results
> select
  title,
  id,
  state,
  created_at,
  html_url
from
  github_search_pull_request
where
  query = 'github_search_issue in:title in:body in:comments';
+--------------------------------------------+------------+-------+----------------------+------------------------------------------------------------+
| title                                      | id         | state | created_at           | html_url                                                   |
+--------------------------------------------+------------+-------+----------------------+------------------------------------------------------------+
| Add table github_search_issue. Closes #102 | 1061578433 | open  | 2021-11-23T18:11:50Z | https://github.com/turbot/steampipe-plugin-github/pull/109 |
+--------------------------------------------+------------+-------+----------------------+------------------------------------------------------------+
> select
  title,
  id,
  state,
  created_at,
  html_url
from
  github_search_pull_request
where
  query = 'is:open assignee:c0d3r-arnab repo:turbot/steampipe-plugin-github';
+---------------------------------------------------+------------+-------+----------------------+------------------------------------------------------------+
| title                                             | id         | state | created_at           | html_url                                                   |
+---------------------------------------------------+------------+-------+----------------------+------------------------------------------------------------+
| Add table github_search_commit. Closes #101       | 1061374903 | open  | 2021-11-23T14:49:16Z | https://github.com/turbot/steampipe-plugin-github/pull/108 |
| Add table github_search_issue. Closes #102        | 1061578433 | open  | 2021-11-23T18:11:50Z | https://github.com/turbot/steampipe-plugin-github/pull/109 |
| Add table github_search_pull_request. Closes #110 | 1062389933 | open  | 2021-11-24T12:49:41Z | https://github.com/turbot/steampipe-plugin-github/pull/111 |
| Add table github_search_code. Closes #100         | 1061173538 | open  | 2021-11-23T11:51:09Z | https://github.com/turbot/steampipe-plugin-github/pull/107 |
+---------------------------------------------------+------------+-------+----------------------+------------------------------------------------------------+
> select
  title,
  id,
  state,
  created_at,
  html_url
from
  github_search_pull_request
where
  query = 'is:public assignee:c0d3r-arnab repo:turbot/steampipe-plugin-github';
+---------------------------------------------------+------------+-------+----------------------+------------------------------------------------------------+
| title                                             | id         | state | created_at           | html_url                                                   |
+---------------------------------------------------+------------+-------+----------------------+------------------------------------------------------------+
| Add table github_search_code. Closes #100         | 1061173538 | open  | 2021-11-23T11:51:09Z | https://github.com/turbot/steampipe-plugin-github/pull/107 |
| Add table github_search_issue. Closes #102        | 1061578433 | open  | 2021-11-23T18:11:50Z | https://github.com/turbot/steampipe-plugin-github/pull/109 |
| Add table github_search_commit. Closes #101       | 1061374903 | open  | 2021-11-23T14:49:16Z | https://github.com/turbot/steampipe-plugin-github/pull/108 |
| Add table github_search_pull_request. Closes #110 | 1062389933 | open  | 2021-11-24T12:49:41Z | https://github.com/turbot/steampipe-plugin-github/pull/111 |
+---------------------------------------------------+------------+-------+----------------------+------------------------------------------------------------+
> select
  title,
  id,
  state,
  created_at,
  html_url
from
  github_search_pull_request
where
  query = 'is:open -linked:issue repo:turbot/steampipe-plugin-github';
+---------------------------------------------------+------------+-------+----------------------+------------------------------------------------------------+
| title                                             | id         | state | created_at           | html_url                                                   |
+---------------------------------------------------+------------+-------+----------------------+------------------------------------------------------------+
| Add table github_search_pull_request. Closes #110 | 1062389933 | open  | 2021-11-24T12:49:41Z | https://github.com/turbot/steampipe-plugin-github/pull/111 |
+---------------------------------------------------+------------+-------+----------------------+------------------------------------------------------------+
> select
  title,
  id,
  comments,
  state,
  created_at,
  html_url
from
  github_search_pull_request
where
  query = 'org:turbot comments:>50';
+----------------------------------------------------+-----------+----------+--------+----------------------+-----------------------------------------------------------+
| title                                              | id        | comments | state  | created_at           | html_url                                                  |
+----------------------------------------------------+-----------+----------+--------+----------------------+-----------------------------------------------------------+
| Add table_aws_ecr_repository. closes #115          | 827175185 | 3        | closed | 2021-03-10T06:02:48Z | https://github.com/turbot/steampipe-plugin-aws/pull/139   |
| Add table azure_express_route_circuit. Closes #153 | 937077253 | 0        | closed | 2021-07-05T13:09:59Z | https://github.com/turbot/steampipe-plugin-azure/pull/170 |
+----------------------------------------------------+-----------+----------+--------+----------------------+-----------------------------------------------------------+
> select
  title,
  id,
  state,
  created_at,
  html_url
from
  github_search_pull_request
where
  query = 'org:turbot draft:true state:open';
+-----------------------------------------------------------------------------------------------------------------------+------------+-------+----------------------+--------------------------------------------------------------------+
| title                                                                                                                 | id         | state | created_at           | html_url                                                           |
+-----------------------------------------------------------------------------------------------------------------------+------------+-------+----------------------+--------------------------------------------------------------------+
| Update index.md                                                                                                       | 1031259081 | open  | 2021-10-20T10:47:03Z | https://github.com/turbot/steampipe-plugin-digitalocean/pull/37    |
| test                                                                                                                  | 1058693013 | open  | 2021-11-19T16:11:19Z | https://github.com/turbot/steampipe-plugin-chaos/pull/76           |
| Add table googledirectory_mobile_device. Closes #10                                                                   | 976075890  | open  | 2021-08-21T07:57:54Z | https://github.com/turbot/steampipe-plugin-googledirectory/pull/13 |
| Add script to generate controls from `https://github.com/projectdiscovery/nuclei-templates`                           | 1006402948 | open  | 2021-09-24T12:15:29Z | https://github.com/turbot/steampipe-utils/pull/10                  |
| Add table github_search_issue. Closes #102                                                                            | 1061578433 | open  | 2021-11-23T18:11:50Z | https://github.com/turbot/steampipe-plugin-github/pull/109         |
| Add missing columns, diagnostic settings and fix existing columns in table_azure_app_service_environment. Closes #358 | 1018042847 | open  | 2021-10-06T10:53:34Z | https://github.com/turbot/steampipe-plugin-azure/pull/384          |
| Generate Diagnostic dump if database failed to start. Closes #727                                                     | 1055419532 | open  | 2021-11-16T22:03:01Z | https://github.com/turbot/steampipe/pull/1128                      |
| Send Steampipe metadata to plugin with connection config #917                                                         | 998377676  | open  | 2021-09-16T15:58:44Z | https://github.com/turbot/steampipe/pull/918                       |
| steampipe should not create connection config file when a specific version of a plugin is installed. Closes #1052     | 1055417804 | open  | 2021-11-16T22:02:19Z | https://github.com/turbot/steampipe/pull/1127                      |
| Add OCI tags controls closes #1                                                                                       | 1002864262 | open  | 2021-09-21T16:54:46Z | https://github.com/turbot/steampipe-mod-oci-tags/pull/2            |
+-----------------------------------------------------------------------------------------------------------------------+------------+-------+----------------------+--------------------------------------------------------------------+
> select
  title,
  id,
  state,
  created_at,
  closed_at,
  html_url
from
  github_search_pull_request
where
  query = 'org:turbot state:closed'
  and closed_at > (created_at + interval '30' day);
+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+------------+--------+----------------------+----------------------+----------------------------------------------------------------+
| title                                                                                                                                                                                      | id         | state  | created_at           | closed_at            | html_url                                                       |
+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+------------+--------+----------------------+----------------------+----------------------------------------------------------------+
| fix key column tables                                                                                                                                                                      | 1021010195 | closed | 2021-10-08T11:50:56Z | 2021-11-10T20:09:47Z | https://github.com/turbot/steampipe-plugin-chaos/pull/58       |
| Add examples to IAM role docs. Closes #684                                                                                                                                                 | 1023697603 | closed | 2021-10-12T11:18:03Z | 2021-11-18T09:16:35Z | https://github.com/turbot/steampipe-plugin-aws/pull/685        |
| Add Guidance section                                                                                                                                                                       | 1013747902 | closed | 2021-10-01T20:47:09Z | 2021-11-10T14:26:58Z | https://github.com/turbot/steampipe-mod-zoom-compliance/pull/5 |
| Support Linux package managers(apt-get, yum, snap). Closes #595                                                                                                                            | 1003895356 | closed | 2021-09-22T06:51:08Z | 2021-11-16T11:19:39Z | https://github.com/turbot/steampipe/pull/937                   |
| Update tables to improve filtering, context cancellation in list calls                                                                                                                     | 997257634  | closed | 2021-09-15T16:02:35Z | 2021-10-29T11:19:52Z | https://github.com/turbot/steampipe-plugin-turbot/pull/5       |
| Update tables to improve filtering, context cancellation in list calls. Closes #60                                                                                                         | 999449243  | closed | 2021-09-17T14:58:34Z | 2021-10-27T11:43:32Z | https://github.com/turbot/steampipe-plugin-github/pull/61      |
| Update `alicloud_ecs_instance`, `alicloud_kms_key` and `alicloud_ram_policy` for better use of API filters, context cancellation in list calls and page limiting for limit clause in query | 992373189  | closed | 2021-09-09T15:42:57Z | 2021-10-21T03:10:02Z | https://github.com/turbot/steampipe-plugin-alicloud/pull/228   |
| Update volume, autonomous database, mysql DB system tables for better use of API filters, context cancellation in list calls and page limiting for `limit` clause in query                 | 989046869  | closed | 2021-09-06T10:57:29Z | 2021-10-21T03:32:36Z | https://github.com/turbot/steampipe-plugin-oci/pull/306        |
| Update tables code for `Optional Qual` changes, `WithCache` functionality for hydrate functions and `Environment variable` usage cleanup for connection setup                              | 987720429  | closed | 2021-09-03T12:25:31Z | 2021-10-21T05:39:29Z | https://github.com/turbot/steampipe-plugin-gcp/pull/298        |
| Update `aws_ec2_instance`, `aws_iam_policy`, `aws_rds_db_cluster_snapshot` for better use of API filters, context cancellation in list calls and page limiting for `limit clause` in query | 983464574  | closed | 2021-08-31T05:40:51Z | 2021-10-07T12:36:28Z | https://github.com/turbot/steampipe-plugin-aws/pull/638        |
| Extend secret checks for `custom patterns` and stripe, twilio, github, facebook etc..                                                                                                      | 976887020  | closed | 2021-08-23T10:37:52Z | 2021-09-28T06:45:47Z | https://github.com/turbot/steampipe-plugin-code/pull/1         |
| Update `aws_ec2_instance` and `aws_cloudformation_stack` examples for secrets check                                                                                                        | 979026040  | closed | 2021-08-25T11:20:34Z | 2021-09-30T12:13:24Z | https://github.com/turbot/steampipe-plugin-aws/pull/633        |
| Fix integration test issues. closes #214                                                                                                                                                   | 972398259  | closed | 2021-08-17T07:44:55Z | 2021-10-18T06:00:21Z | https://github.com/turbot/steampipe-plugin-oci/pull/279        |
| Added pokemon_nature table                                                                                                                                                                 | 970818929  | closed | 2021-08-14T04:32:03Z | 2021-10-22T20:24:37Z | https://github.com/turbot/steampipe-plugin-pokemon/pull/7      |
| Update azure plugin Steampipe hub page for credential setup; Update plugin to work for AzureUSGovernment cloud. Closes #270 Closes #399                                                    | 971646179  | closed | 2021-08-16T11:36:09Z | 2021-10-26T02:15:28Z | https://github.com/turbot/steampipe-plugin-azure/pull/268      |
| added pokemon_stat table                                                                                                                                                                   | 962643019  | closed | 2021-08-06T11:14:56Z | 2021-10-22T20:24:39Z | https://github.com/turbot/steampipe-plugin-pokemon/pull/5      |
| Add HTML formatter. closes #480                                                                                                                                                            | 968882157  | closed | 2021-08-12T13:57:55Z | 2021-10-20T09:28:09Z | https://github.com/turbot/steampipe/pull/772                   |
| `check` summary in `table` output. Closes #710.                                                                                                                                            | 965121122  | closed | 2021-08-10T16:35:42Z | 2021-10-04T15:43:17Z | https://github.com/turbot/steampipe/pull/766                   |
| Create pokemon-berry table                                                                                                                                                                 | 958060639  | closed | 2021-08-02T11:48:01Z | 2021-10-22T20:23:25Z | https://github.com/turbot/steampipe-plugin-pokemon/pull/3      |
| Add reflection table for Steampipe connections. Closes #505                                                                                                                                | 956990687  | closed | 2021-07-30T18:57:55Z | 2021-09-30T09:47:15Z | https://github.com/turbot/steampipe/pull/726                   |
| Generate Diagnostic dump if database failed to start. Closes #727                                                                                                                          | 958355616  | closed | 2021-08-02T17:23:42Z | 2021-11-16T22:02:40Z | https://github.com/turbot/steampipe/pull/730                   |
| Update steampipe-plugin-sdk to v1.6.1                                                                                                                                                      | 954472147  | closed | 2021-07-28T04:52:08Z | 2021-09-22T12:21:24Z | https://github.com/turbot/steampipe-plugin-bitbucket/pull/43   |
| Add golangci-lint workflow and resolve suggestions. Closes #288                                                                                                                            | 954785580  | closed | 2021-07-28T12:05:19Z | 2021-10-18T07:14:16Z | https://github.com/turbot/steampipe-plugin-gcp/pull/291        |
| Add queries from history on `Ctrl+R`. Closes #146                                                                                                                                          | 954669423  | closed | 2021-07-28T09:39:55Z | 2021-09-28T15:53:42Z | https://github.com/turbot/steampipe/pull/701                   |
| Update steampipe-plugin-sdk to v1.4.1                                                                                                                                                      | 955521315  | closed | 2021-07-29T06:52:55Z | 2021-09-21T13:03:40Z | https://github.com/turbot/steampipe-plugin-jira/pull/38        |
+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+------------+--------+----------------------+----------------------+----------------------------------------------------------------+

@c0d3r-arnab c0d3r-arnab self-assigned this Nov 24, 2021
@c0d3r-arnab c0d3r-arnab linked an issue Nov 24, 2021 that may be closed by this pull request
Copy link
Contributor

@ParthaI ParthaI 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 e3e42ca into main Dec 6, 2021
@bigdatasourav bigdatasourav deleted the issue-110 branch December 6, 2021 11:09
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_search_pull_request.
3 participants