org_hosted_runner_partner_images
Creates, updates, deletes, gets or lists an org_hosted_runner_partner_images resource.
Overview
| Name | org_hosted_runner_partner_images |
| Type | Resource |
| Id | github.actions.org_hosted_runner_partner_images |
Fields
The following fields are returned by SELECT queries:
- get_hosted_runners_partner_images_for_org
Response
| Name | Datatype | Description |
|---|---|---|
images | array | |
total_count | integer |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
get_hosted_runners_partner_images_for_org | select | org | Get the list of partner 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.
| Name | Datatype | Description |
|---|---|---|
org | string | The organization name. The name is not case sensitive. |
SELECT examples
- get_hosted_runners_partner_images_for_org
Get the list of partner images available for GitHub-hosted runners for an organization.
SELECT
images,
total_count
FROM github.actions.org_hosted_runner_partner_images
WHERE org = '{{ org }}' -- required
;