Skip to content

Commit 947e667

Browse files
WyriHaximusgithub-actions[bot]
authored andcommitted
[GitHub] Update to 1.1.4-46eadb305342d3e08e981c8d774b0cb1 from 1.1.4-2fa68ef1401ab1f8ecec407bb7c5d77b
Detected Schema changes: ``` ├─┬Paths │ ├──[➖] path (4925:3)❌ │ ├──[➖] path (4784:3)❌ │ ├──[➖] path (5066:3)❌ │ ├──[➖] path (5001:3)❌ │ ├──[➖] path (5108:3)❌ │ ├──[➖] path (5910:3)❌ │ ├──[➖] path (4963:3)❌ │ ├──[➖] path (5028:3)❌ │ ├─┬/orgs/{org}/actions/runner-groups/{runner_group_id} │ │ └─┬PATCH │ │ └─┬Requestbody │ │ └─┬application/json │ │ └─┬Schema │ │ └──[➖] properties (5860:17)❌ │ └─┬/orgs/{org}/actions/runner-groups │ └─┬POST │ └─┬Requestbody │ └─┬application/json │ └─┬Schema │ └──[➖] properties (5745:17)❌ └─┬Components ├──[➖] parameters (229018:7)❌ ├──[➖] examples (206478:7)❌ ├──[➖] examples (206519:7)❌ ├──[➖] examples (206541:7)❌ ├──[➖] examples (206548:7)❌ ├──[➖] examples (206553:7)❌ ├──[➖] schemas (74273:7)❌ ├──[➖] schemas (74107:7)❌ ├──[➖] schemas (74234:7)❌ ├──[➖] schemas (74068:7)❌ ├──[➖] schemas (74137:7)❌ ├──[➖] schemas (74157:7)❌ ├─┬integration │ └─┬owner │ ├──[➕] anyOf (67446:13) │ ├──[➕] anyOf (67030:7) │ ├──[➖] oneOf (67924:7)❌ │ └──[➖] oneOf (67537:7)❌ └─┬runner-groups-org └──[➖] properties (74421:9)❌ ``` | Document Element | Total Changes | Breaking Changes | |------------------|---------------|------------------| | paths | 10 | 10 | | components | 17 | 15 | Date: 01/17/25 | Commit: New: etc/specs/GitHub/previous.spec.yaml, Original: etc/specs/GitHub/current.spec.yaml - ❌ **BREAKING Changes**: _25_ out of _27_ - **Removals**: _25_ - **Additions**: _2_ - **Breaking Removals**: _25_ ERROR: breaking changes discovered
1 parent 40d9f2e commit 947e667

File tree

191 files changed

+23849
-8932
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

191 files changed

+23849
-8932
lines changed

clients/GitHub/README.md

+236
Original file line numberDiff line numberDiff line change
@@ -2678,6 +2678,216 @@ $client->operations()->actions()->getActionsCacheUsageByRepoForOrg( org:
26782678
You can find more about this operation over at the [API method documentation](https://docs.github.com/rest/actions/cache#list-repositories-with-github-actions-cache-usage-for-an-organization).
26792679

26802680

2681+
### actions/list-hosted-runners-for-org
2682+
2683+
List GitHub-hosted runners for an organization
2684+
2685+
Using the `call` method:
2686+
```php
2687+
$client->call('GET /orgs/{org}/actions/hosted-runners', [
2688+
'org' => 'generated',
2689+
'per_page' => 8,
2690+
'page' => 1,
2691+
]);
2692+
```
2693+
2694+
Operations method:
2695+
```php
2696+
$client->operations()->actions()->listHostedRunnersForOrg( org: 'generated',
2697+
per_page: 8,
2698+
page: 1,
2699+
);
2700+
```
2701+
2702+
You can find more about this operation over at the [API method documentation](https://docs.github.com/rest/actions/hosted-runners#list-github-hosted-runners-for-an-organization).
2703+
2704+
2705+
### actions/create-hosted-runner-for-org
2706+
2707+
Create a GitHub-hosted runner for an organization
2708+
2709+
Using the `call` method:
2710+
```php
2711+
$client->call('POST /orgs/{org}/actions/hosted-runners', [
2712+
'org' => 'generated',
2713+
]);
2714+
```
2715+
2716+
Operations method:
2717+
```php
2718+
$client->operations()->actions()->createHostedRunnerForOrg( org: 'generated',
2719+
);
2720+
```
2721+
2722+
You can find more about this operation over at the [API method documentation](https://docs.github.com/rest/actions/hosted-runners#create-a-github-hosted-runner-for-an-organization).
2723+
2724+
2725+
### actions/get-hosted-runners-github-owned-images-for-org
2726+
2727+
Get GitHub-owned images for GitHub-hosted runners in an organization
2728+
2729+
Using the `call` method:
2730+
```php
2731+
$client->call('GET /orgs/{org}/actions/hosted-runners/images/github-owned', [
2732+
'org' => 'generated',
2733+
]);
2734+
```
2735+
2736+
Operations method:
2737+
```php
2738+
$client->operations()->actions()->getHostedRunnersGithubOwnedImagesForOrg( org: 'generated',
2739+
);
2740+
```
2741+
2742+
You can find more about this operation over at the [API method documentation](https://docs.github.com/rest/actions/hosted-runners#get-github-owned-images-for-github-hosted-runners-in-an-organization).
2743+
2744+
2745+
### actions/get-hosted-runners-partner-images-for-org
2746+
2747+
Get partner images for GitHub-hosted runners in an organization
2748+
2749+
Using the `call` method:
2750+
```php
2751+
$client->call('GET /orgs/{org}/actions/hosted-runners/images/partner', [
2752+
'org' => 'generated',
2753+
]);
2754+
```
2755+
2756+
Operations method:
2757+
```php
2758+
$client->operations()->actions()->getHostedRunnersPartnerImagesForOrg( org: 'generated',
2759+
);
2760+
```
2761+
2762+
You can find more about this operation over at the [API method documentation](https://docs.github.com/rest/actions/hosted-runners#get-partner-images-for-github-hosted-runners-in-an-organization).
2763+
2764+
2765+
### actions/get-hosted-runners-limits-for-org
2766+
2767+
Get limits on GitHub-hosted runners for an organization
2768+
2769+
Using the `call` method:
2770+
```php
2771+
$client->call('GET /orgs/{org}/actions/hosted-runners/limits', [
2772+
'org' => 'generated',
2773+
]);
2774+
```
2775+
2776+
Operations method:
2777+
```php
2778+
$client->operations()->actions()->getHostedRunnersLimitsForOrg( org: 'generated',
2779+
);
2780+
```
2781+
2782+
You can find more about this operation over at the [API method documentation](https://docs.github.com/rest/actions/hosted-runners#get-limits-on-github-hosted-runners-for-an-organization).
2783+
2784+
2785+
### actions/get-hosted-runners-machine-specs-for-org
2786+
2787+
Get GitHub-hosted runners machine specs for an organization
2788+
2789+
Using the `call` method:
2790+
```php
2791+
$client->call('GET /orgs/{org}/actions/hosted-runners/machine-sizes', [
2792+
'org' => 'generated',
2793+
]);
2794+
```
2795+
2796+
Operations method:
2797+
```php
2798+
$client->operations()->actions()->getHostedRunnersMachineSpecsForOrg( org: 'generated',
2799+
);
2800+
```
2801+
2802+
You can find more about this operation over at the [API method documentation](https://docs.github.com/rest/actions/hosted-runners#get-github-hosted-runners-machine-specs-for-an-organization).
2803+
2804+
2805+
### actions/get-hosted-runners-platforms-for-org
2806+
2807+
Get platforms for GitHub-hosted runners in an organization
2808+
2809+
Using the `call` method:
2810+
```php
2811+
$client->call('GET /orgs/{org}/actions/hosted-runners/platforms', [
2812+
'org' => 'generated',
2813+
]);
2814+
```
2815+
2816+
Operations method:
2817+
```php
2818+
$client->operations()->actions()->getHostedRunnersPlatformsForOrg( org: 'generated',
2819+
);
2820+
```
2821+
2822+
You can find more about this operation over at the [API method documentation](https://docs.github.com/rest/actions/hosted-runners#get-platforms-for-github-hosted-runners-in-an-organization).
2823+
2824+
2825+
### actions/get-hosted-runner-for-org
2826+
2827+
Get a GitHub-hosted runner for an organization
2828+
2829+
Using the `call` method:
2830+
```php
2831+
$client->call('GET /orgs/{org}/actions/hosted-runners/{hosted_runner_id}', [
2832+
'org' => 'generated',
2833+
'hosted_runner_id' => 16,
2834+
]);
2835+
```
2836+
2837+
Operations method:
2838+
```php
2839+
$client->operations()->actions()->getHostedRunnerForOrg( org: 'generated',
2840+
hosted_runner_id: 16,
2841+
);
2842+
```
2843+
2844+
You can find more about this operation over at the [API method documentation](https://docs.github.com/rest/actions/hosted-runners#get-a-github-hosted-runner-for-an-organization).
2845+
2846+
2847+
### actions/delete-hosted-runner-for-org
2848+
2849+
Delete a GitHub-hosted runner for an organization
2850+
2851+
Using the `call` method:
2852+
```php
2853+
$client->call('DELETE /orgs/{org}/actions/hosted-runners/{hosted_runner_id}', [
2854+
'org' => 'generated',
2855+
'hosted_runner_id' => 16,
2856+
]);
2857+
```
2858+
2859+
Operations method:
2860+
```php
2861+
$client->operations()->actions()->deleteHostedRunnerForOrg( org: 'generated',
2862+
hosted_runner_id: 16,
2863+
);
2864+
```
2865+
2866+
You can find more about this operation over at the [API method documentation](https://docs.github.com/rest/actions/hosted-runners#delete-a-github-hosted-runner-for-an-organization).
2867+
2868+
2869+
### actions/update-hosted-runner-for-org
2870+
2871+
Update a GitHub-hosted runner for an organization
2872+
2873+
Using the `call` method:
2874+
```php
2875+
$client->call('PATCH /orgs/{org}/actions/hosted-runners/{hosted_runner_id}', [
2876+
'org' => 'generated',
2877+
'hosted_runner_id' => 16,
2878+
]);
2879+
```
2880+
2881+
Operations method:
2882+
```php
2883+
$client->operations()->actions()->updateHostedRunnerForOrg( org: 'generated',
2884+
hosted_runner_id: 16,
2885+
);
2886+
```
2887+
2888+
You can find more about this operation over at the [API method documentation](https://docs.github.com/rest/actions/hosted-runners#update-a-github-hosted-runner-for-an-organization).
2889+
2890+
26812891
### oidc/get-oidc-custom-sub-template-for-org
26822892

26832893
Get the customization template for an OIDC subject claim for an organization
@@ -3038,6 +3248,32 @@ $client->operations()->actions()->updateSelfHostedRunnerGroupForOrg( org:
30383248
You can find more about this operation over at the [API method documentation](https://docs.github.com/rest/actions/self-hosted-runner-groups#update-a-self-hosted-runner-group-for-an-organization).
30393249

30403250

3251+
### actions/list-github-hosted-runners-in-group-for-org
3252+
3253+
List GitHub-hosted runners in a group for an organization
3254+
3255+
Using the `call` method:
3256+
```php
3257+
$client->call('GET /orgs/{org}/actions/runner-groups/{runner_group_id}/hosted-runners', [
3258+
'org' => 'generated',
3259+
'runner_group_id' => 15,
3260+
'per_page' => 8,
3261+
'page' => 1,
3262+
]);
3263+
```
3264+
3265+
Operations method:
3266+
```php
3267+
$client->operations()->actions()->listGithubHostedRunnersInGroupForOrg( org: 'generated',
3268+
runner_group_id: 15,
3269+
per_page: 8,
3270+
page: 1,
3271+
);
3272+
```
3273+
3274+
You can find more about this operation over at the [API method documentation](https://docs.github.com/rest/actions/self-hosted-runner-groups#list-github-hosted-runners-in-a-group-for-an-organization).
3275+
3276+
30413277
### actions/list-repo-access-to-self-hosted-runner-group-in-org
30423278

30433279
List repository access to a self-hosted runner group in an organization

0 commit comments

Comments
 (0)