steampipe plugin install github

Table: github_package

GitHub Packages allow you to store and manage packages such as container images or other artifacts in your GitHub repositories.

Examples

List all

select
*
from
github_package;

Schema for github_package

NameTypeOperatorsDescription
_ctxjsonbSteampipe context in JSON form.
created_attimestamp with time zoneTimestamp when the package was created.
html_urltextHTML URL of the package.
idbigintUnique ID of the package.
login_idtext=, !=, ~~, ~~*, !~~, !~~*Unique identifier for the user login.
nametext=Name of the package.
organizationtext=The name of the GitHub organization.
ownerjsonbThe information about the owner.
owner_html_urltextHTML URL of the package owner.
owner_idbigintID of the package owner.
owner_logintextLogin name of the package owner.
owner_urltextAPI URL of the package owner.
package_typetext=Type of the package (e.g., container, npm, etc.).
repositoryjsonbThe information about the repository.
repository_full_nametextFull name of the repository associated with the package.
repository_html_urltextHTML URL of the repository.
repository_idbigintID of the repository associated with the package.
repository_privatebooleanIndicates if the repository is private.
sp_connection_nametext=, !=, ~~, ~~*, !~~, !~~*Steampipe connection name.
sp_ctxjsonbSteampipe context in JSON form.
updated_attimestamp with time zoneTimestamp when the package was last updated.
urltextAPI URL of the package.
visibilitytext=Visibility of the package (public or private).

Export

This table is available as a standalone Exporter CLI. Steampipe exporters are stand-alone binaries that allow you to extract data using Steampipe plugins without a database.

You can download the tarball for your platform from the Releases page, but it is simplest to install them with the steampipe_export_installer.sh script:

/bin/sh -c "$(curl -fsSL https://steampipe.io/install/export.sh)" -- github

You can pass the configuration to the command with the --config argument:

steampipe_export_github --config '<your_config>' github_package