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_organization_member Closes #176 #177

Merged
merged 3 commits into from
Aug 10, 2022

Conversation

karanpopat
Copy link
Contributor

Example query results

Results
> select
  organization,
  login,
  role,
  state
from
  github_organization_member
where
  organization = 'new-testing-org';
+-----------------+--------------+--------+--------+
| organization    | login        | role   | state  |
+-----------------+--------------+--------+--------+
| new-testing-org | rajlearner17 | admin  | active |
| new-testing-org | vkumbha      | member | active |
| new-testing-org | ParthaI      | member | active |
| new-testing-org | karanpopat   | admin  | active |
+-----------------+--------------+--------+--------+

> select
  organization,
  login,
  role,
  state
from
  github_organization_member
where
  organization = 'new-testing-org'
  and role = 'admin'
  and state = 'active';

+-----------------+--------------+-------+--------+
| organization    | login        | role  | state  |
+-----------------+--------------+-------+--------+
| new-testing-org | rajlearner17 | admin | active |
| new-testing-org | karanpopat   | admin | active |
+-----------------+--------------+-------+--------+

@karanpopat karanpopat linked an issue Jul 27, 2022 that may be closed by this pull request
@karanpopat karanpopat requested a review from ParthaI July 27, 2022 15:32
@karanpopat karanpopat self-assigned this Jul 27, 2022
@karanpopat karanpopat requested a review from LalitLab July 29, 2022 12:25
Copy link
Contributor

@LalitLab LalitLab left a comment

Choose a reason for hiding this comment

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

@karanpopat left few comments

github/table_github_organization_member.go Outdated Show resolved Hide resolved
github/table_github_organization_member.go Show resolved Hide resolved
@misraved misraved merged commit 5e1b90e into main Aug 10, 2022
@misraved misraved deleted the 176-add-table-github_organization_member branch August 10, 2022 19:36
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_organization_member
3 participants