Skip to main content

org_hosted_runner_limits

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

Overview

Nameorg_hosted_runner_limits
TypeResource
Idgithub.actions.org_hosted_runner_limits

Fields

The following fields are returned by SELECT queries:

Response

NameDatatypeDescription
current_usageintegerThe current number of static public IP addresses in use by Hosted Runners.
maximumintegerThe maximum number of static public IP addresses that can be used for Hosted Runners.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
get_hosted_runners_limits_for_orgselectorgGet the GitHub-hosted runners limits 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 GitHub-hosted runners limits for an organization.

SELECT
current_usage,
maximum
FROM github.actions.org_hosted_runner_limits
WHERE org = '{{ org }}' -- required
;