Skip to main content

org_hosted_runner_github_images

Creates, updates, deletes, gets or lists an org_hosted_runner_github_images resource.

Overview

Nameorg_hosted_runner_github_images
TypeResource
Idgithub.actions.org_hosted_runner_github_images

Fields

The following fields are returned by SELECT queries:

Response

NameDatatypeDescription
imagesarray
total_countinteger

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
get_hosted_runners_github_owned_images_for_orgselectorgGet the list of GitHub-owned images available for GitHub-hosted runners for an organization.

Parameters

Parameters can be passed in the WHERE clause of a query. Check the Methods section to see which parameters are required or optional for each operation.

NameDatatypeDescription
orgstringThe organization name. The name is not case sensitive.

SELECT examples

Get the list of GitHub-owned images available for GitHub-hosted runners for an organization.

SELECT
images,
total_count
FROM github.actions.org_hosted_runner_github_images
WHERE org = '{{ org }}' -- required
;