Skip to content

Commit bf2350c

Browse files
authored
Merge pull request #890 from php-api-clients/GitHubEnterprise-3.7/from-1.1.4-a3c06b548eba345287efb1b13c620d6d-from-1.1.4-a3c06b548eba345287efb1b13c620d6d
2 parents ccb334f + 8d77c0f commit bf2350c

File tree

291 files changed

+734
-634
lines changed

Some content is hidden

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

291 files changed

+734
-634
lines changed

clients/GitHubEnterprise-3.7/etc/openapi-client-generator.state

+297-297
Large diffs are not rendered by default.

clients/GitHubEnterprise-3.7/src/Internal/Hydrator/Operation/Meta.php

+26
Original file line numberDiff line numberDiff line change
@@ -178,6 +178,17 @@ private function hydrateApiClients⚡️Client⚡️GitHubEnterprise⚡️Schema
178178
$properties['packages'] = $value;
179179

180180
after_packages:
181+
182+
$value = $payload['actions'] ?? null;
183+
184+
if ($value === null) {
185+
$properties['actions'] = null;
186+
goto after_actions;
187+
}
188+
189+
$properties['actions'] = $value;
190+
191+
after_actions:
181192
} catch (Throwable $exception) {
182193
throw UnableToHydrateObject::dueToError('ApiClients\Client\GitHubEnterprise\Schema\ApiOverview\Domains', $exception, stack: $this->hydrationStack);
183194
}
@@ -411,6 +422,21 @@ private function serializeObjectApiClients⚡️Client⚡️GitHubEnterprise⚡
411422
$packages = $packagesSerializer0->serialize($packages, $this);
412423
after_packages: $result['packages'] = $packages;
413424

425+
$actions = $object->actions;
426+
427+
if ($actions === null) {
428+
goto after_actions;
429+
}
430+
431+
static $actionsSerializer0;
432+
433+
if ($actionsSerializer0 === null) {
434+
$actionsSerializer0 = new SerializeArrayItems(...[]);
435+
}
436+
437+
$actions = $actionsSerializer0->serialize($actions, $this);
438+
after_actions: $result['actions'] = $actions;
439+
414440
return $result;
415441
}
416442

clients/GitHubEnterprise-3.7/src/Internal/Operator/Actions/CreateOrUpdateEnvironmentSecret.php

+1
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,7 @@ public function __construct(private Browser $browser, private AuthenticationInte
2525
{
2626
}
2727

28+
/** @return */
2829
public function call(int $repositoryId, string $environmentName, string $secretName, array $params): EmptyObject|WithoutBody
2930
{
3031
$operation = new \ApiClients\Client\GitHubEnterprise\Internal\Operation\Actions\CreateOrUpdateEnvironmentSecret($this->requestSchemaValidator, $this->responseSchemaValidator, $this->hydrator, $repositoryId, $environmentName, $secretName);

clients/GitHubEnterprise-3.7/src/Internal/Operator/Actions/DeleteEnvironmentSecret.php

+1
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@ public function __construct(private Browser $browser, private AuthenticationInte
2222
{
2323
}
2424

25+
/** @return */
2526
public function call(int $repositoryId, string $environmentName, string $secretName): WithoutBody
2627
{
2728
$operation = new \ApiClients\Client\GitHubEnterprise\Internal\Operation\Actions\DeleteEnvironmentSecret($repositoryId, $environmentName, $secretName);

clients/GitHubEnterprise-3.7/src/Internal/Operator/Actions/GetEnvironmentPublicKey.php

+1
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,7 @@ public function __construct(private Browser $browser, private AuthenticationInte
2424
{
2525
}
2626

27+
/** @return */
2728
public function call(int $repositoryId, string $environmentName): ActionsPublicKey
2829
{
2930
$operation = new \ApiClients\Client\GitHubEnterprise\Internal\Operation\Actions\GetEnvironmentPublicKey($this->responseSchemaValidator, $this->hydrator, $repositoryId, $environmentName);

clients/GitHubEnterprise-3.7/src/Internal/Operator/Actions/GetEnvironmentSecret.php

+1
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,7 @@ public function __construct(private Browser $browser, private AuthenticationInte
2424
{
2525
}
2626

27+
/** @return */
2728
public function call(int $repositoryId, string $environmentName, string $secretName): ActionsSecret
2829
{
2930
$operation = new \ApiClients\Client\GitHubEnterprise\Internal\Operation\Actions\GetEnvironmentSecret($this->responseSchemaValidator, $this->hydrator, $repositoryId, $environmentName, $secretName);

clients/GitHubEnterprise-3.7/src/Internal/Operator/Actions/ListEnvironmentSecrets.php

+1
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,7 @@ public function __construct(private Browser $browser, private AuthenticationInte
2424
{
2525
}
2626

27+
/** @return */
2728
public function call(int $repositoryId, string $environmentName, int $perPage = 30, int $page = 1): Json
2829
{
2930
$operation = new \ApiClients\Client\GitHubEnterprise\Internal\Operation\Actions\ListEnvironmentSecrets($this->responseSchemaValidator, $this->hydrator, $repositoryId, $environmentName, $perPage, $page);

clients/GitHubEnterprise-3.7/src/Internal/Operator/Repos/CreateDeploymentBranchPolicy.php

+1
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,7 @@ public function __construct(private Browser $browser, private AuthenticationInte
2525
{
2626
}
2727

28+
/** @return */
2829
public function call(string $owner, string $repo, string $environmentName, array $params): DeploymentBranchPolicy|WithoutBody
2930
{
3031
$operation = new \ApiClients\Client\GitHubEnterprise\Internal\Operation\Repos\CreateDeploymentBranchPolicy($this->requestSchemaValidator, $this->responseSchemaValidator, $this->hydrator, $owner, $repo, $environmentName);

clients/GitHubEnterprise-3.7/src/Internal/Operator/Repos/CreateForAuthenticatedUser.php

+1
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,7 @@ public function __construct(private Browser $browser, private AuthenticationInte
2525
{
2626
}
2727

28+
/** @return */
2829
public function call(array $params): FullRepository|WithoutBody
2930
{
3031
$operation = new \ApiClients\Client\GitHubEnterprise\Internal\Operation\Repos\CreateForAuthenticatedUser($this->requestSchemaValidator, $this->responseSchemaValidator, $this->hydrator);

clients/GitHubEnterprise-3.7/src/Internal/Operator/Repos/CreateInOrg.php

+1
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,7 @@ public function __construct(private Browser $browser, private AuthenticationInte
2424
{
2525
}
2626

27+
/** @return */
2728
public function call(string $org, array $params): FullRepository
2829
{
2930
$operation = new \ApiClients\Client\GitHubEnterprise\Internal\Operation\Repos\CreateInOrg($this->requestSchemaValidator, $this->responseSchemaValidator, $this->hydrator, $org);

clients/GitHubEnterprise-3.7/src/Internal/Operator/Repos/CreateOrUpdateEnvironment.php

+1
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,7 @@ public function __construct(private Browser $browser, private AuthenticationInte
2424
{
2525
}
2626

27+
/** @return */
2728
public function call(string $owner, string $repo, string $environmentName, array $params): Environment
2829
{
2930
$operation = new \ApiClients\Client\GitHubEnterprise\Internal\Operation\Repos\CreateOrUpdateEnvironment($this->requestSchemaValidator, $this->responseSchemaValidator, $this->hydrator, $owner, $repo, $environmentName);

clients/GitHubEnterprise-3.7/src/Internal/Operator/Repos/CreateUsingTemplate.php

+1
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,7 @@ public function __construct(private Browser $browser, private AuthenticationInte
2424
{
2525
}
2626

27+
/** @return */
2728
public function call(string $templateOwner, string $templateRepo, array $params): FullRepository
2829
{
2930
$operation = new \ApiClients\Client\GitHubEnterprise\Internal\Operation\Repos\CreateUsingTemplate($this->requestSchemaValidator, $this->responseSchemaValidator, $this->hydrator, $templateOwner, $templateRepo);

clients/GitHubEnterprise-3.7/src/Internal/Operator/Repos/DeleteAnEnvironment.php

+1
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@ public function __construct(private Browser $browser, private AuthenticationInte
2222
{
2323
}
2424

25+
/** @return */
2526
public function call(string $owner, string $repo, string $environmentName): WithoutBody
2627
{
2728
$operation = new \ApiClients\Client\GitHubEnterprise\Internal\Operation\Repos\DeleteAnEnvironment($owner, $repo, $environmentName);

clients/GitHubEnterprise-3.7/src/Internal/Operator/Repos/DeleteDeploymentBranchPolicy.php

+1
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@ public function __construct(private Browser $browser, private AuthenticationInte
2222
{
2323
}
2424

25+
/** @return */
2526
public function call(string $owner, string $repo, string $environmentName, int $branchPolicyId): WithoutBody
2627
{
2728
$operation = new \ApiClients\Client\GitHubEnterprise\Internal\Operation\Repos\DeleteDeploymentBranchPolicy($owner, $repo, $environmentName, $branchPolicyId);

clients/GitHubEnterprise-3.7/src/Internal/Operator/Repos/GetDeploymentBranchPolicy.php

+1
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,7 @@ public function __construct(private Browser $browser, private AuthenticationInte
2424
{
2525
}
2626

27+
/** @return */
2728
public function call(string $owner, string $repo, string $environmentName, int $branchPolicyId): DeploymentBranchPolicy
2829
{
2930
$operation = new \ApiClients\Client\GitHubEnterprise\Internal\Operation\Repos\GetDeploymentBranchPolicy($this->responseSchemaValidator, $this->hydrator, $owner, $repo, $environmentName, $branchPolicyId);

clients/GitHubEnterprise-3.7/src/Internal/Operator/Repos/GetEnvironment.php

+1
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,7 @@ public function __construct(private Browser $browser, private AuthenticationInte
2424
{
2525
}
2626

27+
/** @return */
2728
public function call(string $owner, string $repo, string $environmentName): Environment
2829
{
2930
$operation = new \ApiClients\Client\GitHubEnterprise\Internal\Operation\Repos\GetEnvironment($this->responseSchemaValidator, $this->hydrator, $owner, $repo, $environmentName);

clients/GitHubEnterprise-3.7/src/Internal/Operator/Repos/ListDeploymentBranchPolicies.php

+1
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,7 @@ public function __construct(private Browser $browser, private AuthenticationInte
2424
{
2525
}
2626

27+
/** @return */
2728
public function call(string $owner, string $repo, string $environmentName, int $perPage = 30, int $page = 1): Ok
2829
{
2930
$operation = new \ApiClients\Client\GitHubEnterprise\Internal\Operation\Repos\ListDeploymentBranchPolicies($this->responseSchemaValidator, $this->hydrator, $owner, $repo, $environmentName, $perPage, $page);

clients/GitHubEnterprise-3.7/src/Internal/Operator/Repos/UpdateDeploymentBranchPolicy.php

+1
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,7 @@ public function __construct(private Browser $browser, private AuthenticationInte
2424
{
2525
}
2626

27+
/** @return */
2728
public function call(string $owner, string $repo, string $environmentName, int $branchPolicyId, array $params): DeploymentBranchPolicy
2829
{
2930
$operation = new \ApiClients\Client\GitHubEnterprise\Internal\Operation\Repos\UpdateDeploymentBranchPolicy($this->requestSchemaValidator, $this->responseSchemaValidator, $this->hydrator, $owner, $repo, $environmentName, $branchPolicyId);

clients/GitHubEnterprise-3.7/src/Internal/Router/Delete/Actions.php

+1
Original file line numberDiff line numberDiff line change
@@ -199,6 +199,7 @@ public function deleteRepoSecret(array $params): WithoutBody
199199
return $operator->call($arguments['owner'], $arguments['repo'], $arguments['secret_name']);
200200
}
201201

202+
/** @return */
202203
public function deleteEnvironmentSecret(array $params): WithoutBody
203204
{
204205
$arguments = [];

clients/GitHubEnterprise-3.7/src/Internal/Router/Delete/Eight.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ public function __construct(private Routers $routers)
1818
{
1919
}
2020

21-
/** @return |\ApiClients\Tools\OpenApiClient\Utils\Response\WithoutBody|Observable<Schema\Label>|Schema\BasicError */
21+
/** @return |Observable<Schema\Label>|Schema\BasicError */
2222
public function call(string $call, array $params, array $pathChunks): WithoutBody|Ok|Json|iterable|BasicError|PullRequestReview
2323
{
2424
if ($pathChunks[0] === '') {

clients/GitHubEnterprise-3.7/src/Internal/Router/Delete/Repos.php

+2
Original file line numberDiff line numberDiff line change
@@ -316,6 +316,7 @@ public function deleteDeployment(array $params): WithoutBody
316316
return $operator->call($arguments['owner'], $arguments['repo'], $arguments['deployment_id']);
317317
}
318318

319+
/** @return */
319320
public function deleteAnEnvironment(array $params): WithoutBody
320321
{
321322
$arguments = [];
@@ -585,6 +586,7 @@ public function deleteAccessRestrictions(array $params): WithoutBody
585586
return $operator->call($arguments['owner'], $arguments['repo'], $arguments['branch']);
586587
}
587588

589+
/** @return */
588590
public function deleteDeploymentBranchPolicy(array $params): WithoutBody
589591
{
590592
$arguments = [];

clients/GitHubEnterprise-3.7/src/Internal/Router/Delete/Seven.php

-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,6 @@ public function __construct(private Routers $routers)
1919
{
2020
}
2121

22-
/** @return |\ApiClients\Tools\OpenApiClient\Utils\Response\WithoutBody */
2322
public function call(string $call, array $params, array $pathChunks): WithoutBody|Json|\ApiClients\Client\GitHubEnterprise\Schema\Operations\Actions\RemoveAllCustomLabelsFromSelfHostedRunnerForOrg\Response\ApplicationJson\Ok\Application\Json|CodeScanningAnalysisDeletion|Issue|BasicError|PullRequestSimple
2423
{
2524
if ($pathChunks[0] === '') {

clients/GitHubEnterprise-3.7/src/Internal/Router/Delete/Six.php

-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,6 @@ public function __construct(private Routers $routers)
1717
{
1818
}
1919

20-
/** @return |\ApiClients\Tools\OpenApiClient\Utils\Response\WithoutBody */
2120
public function call(string $call, array $params, array $pathChunks): WithoutBody|ActionsCacheList|FileCommit|RepositoryPreReceiveHook
2221
{
2322
if ($pathChunks[0] === '') {

clients/GitHubEnterprise-3.7/src/Internal/Router/Get/Actions.php

+3
Original file line numberDiff line numberDiff line change
@@ -570,6 +570,7 @@ public function listRepoWorkflows(array $params): \ApiClients\Client\GitHubEnter
570570
return $operator->call($arguments['owner'], $arguments['repo'], $arguments['per_page'], $arguments['page']);
571571
}
572572

573+
/** @return */
573574
public function listEnvironmentSecrets(array $params): \ApiClients\Client\GitHubEnterprise\Schema\Operations\Actions\ListEnvironmentSecrets\Response\ApplicationJson\Ok\Application\Json
574575
{
575576
$arguments = [];
@@ -1139,6 +1140,7 @@ public function getWorkflow(array $params): Workflow
11391140
return $operator->call($arguments['owner'], $arguments['repo'], $arguments['workflow_id']);
11401141
}
11411142

1143+
/** @return */
11421144
public function getEnvironmentPublicKey(array $params): ActionsPublicKey
11431145
{
11441146
$arguments = [];
@@ -1159,6 +1161,7 @@ public function getEnvironmentPublicKey(array $params): ActionsPublicKey
11591161
return $operator->call($arguments['repository_id'], $arguments['environment_name']);
11601162
}
11611163

1164+
/** @return */
11621165
public function getEnvironmentSecret(array $params): ActionsSecret
11631166
{
11641167
$arguments = [];

clients/GitHubEnterprise-3.7/src/Internal/Router/Get/Eight.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ public function __construct(private Routers $routers)
2626
{
2727
}
2828

29-
/** @return Observable<Schema\TeamDiscussionComment>|Observable<Schema\Reaction>||Observable<Schema\EnvironmentApprovals>|Observable<Schema\PendingDeployment>|Observable<Schema\CodeScanningAlertInstance>|Schema\DeploymentBranchPolicy|Observable<Schema\SecretScanningLocation>|WithoutBody */
29+
/** @return Observable<Schema\TeamDiscussionComment>|Observable<Schema\Reaction>||Observable<Schema\EnvironmentApprovals>|Observable<Schema\PendingDeployment>|Observable<Schema\CodeScanningAlertInstance>|Observable<Schema\SecretScanningLocation>|WithoutBody */
3030
public function call(string $call, array $params, array $pathChunks): iterable|TeamRepository|WithoutBody|OidcCustomSubRepo|Ok|Json|\ApiClients\Client\GitHubEnterprise\Schema\Operations\Actions\ListJobsForWorkflowRun\Response\ApplicationJson\Ok\Application\Json|\ApiClients\Client\GitHubEnterprise\Schema\Operations\Actions\ListWorkflowRuns\Response\ApplicationJson\Ok\Application\Json|ProtectedBranchAdminEnforced|ProtectedBranchPullRequestReview|StatusCheckPolicy|BranchRestrictionPolicy|DeploymentStatus|DeploymentBranchPolicy|HookDelivery|PullRequestReview
3131
{
3232
if ($pathChunks[0] === '') {

clients/GitHubEnterprise-3.7/src/Internal/Router/Get/Repos.php

+3
Original file line numberDiff line numberDiff line change
@@ -524,6 +524,7 @@ public function getDeployment(array $params): Deployment
524524
return $operator->call($arguments['owner'], $arguments['repo'], $arguments['deployment_id']);
525525
}
526526

527+
/** @return */
527528
public function getEnvironment(array $params): Environment
528529
{
529530
$arguments = [];
@@ -1903,6 +1904,7 @@ public function listDeploymentStatuses(array $params): iterable
19031904
return $operator->call($arguments['owner'], $arguments['repo'], $arguments['deployment_id'], $arguments['per_page'], $arguments['page']);
19041905
}
19051906

1907+
/** @return */
19061908
public function listDeploymentBranchPolicies(array $params): \ApiClients\Client\GitHubEnterprise\Schema\Operations\Repos\ListDeploymentBranchPolicies\Response\ApplicationJson\Ok
19071909
{
19081910
$arguments = [];
@@ -2322,6 +2324,7 @@ public function getDeploymentStatus(array $params): DeploymentStatus
23222324
return $operator->call($arguments['owner'], $arguments['repo'], $arguments['deployment_id'], $arguments['status_id']);
23232325
}
23242326

2327+
/** @return */
23252328
public function getDeploymentBranchPolicy(array $params): DeploymentBranchPolicy
23262329
{
23272330
$arguments = [];

clients/GitHubEnterprise-3.7/src/Internal/Router/Get/Seven.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ public function __construct(private Routers $routers)
5757
{
5858
}
5959

60-
/** @return |Observable<Schema\RunnerApplication>|Observable<Schema\CheckAnnotation>|Observable<Schema\Reaction>|Observable<Schema\BranchShort>|Observable<Schema\CommitComment>|Observable<Schema\PullRequestSimple>|Observable<Schema\Status>|Schema\BasicError|Observable<Schema\DependencyGraphDiff>|Observable<Schema\DeploymentStatus>|Schema\Operations\Repos\ListDeploymentBranchPolicies\Response\ApplicationJson\Ok|Observable<Schema\GitRef>|Observable<Schema\HookDeliveryItem>|Observable<Schema\IssueComment>|Observable<Schema\LabeledIssueEvent|Schema\UnlabeledIssueEvent|Schema\AssignedIssueEvent|Schema\UnassignedIssueEvent|Schema\MilestonedIssueEvent|Schema\DemilestonedIssueEvent|Schema\RenamedIssueEvent|Schema\ReviewRequestedIssueEvent|Schema\ReviewRequestRemovedIssueEvent|Schema\ReviewDismissedIssueEvent|Schema\LockedIssueEvent|Schema\AddedToProjectIssueEvent|Schema\MovedColumnInProjectIssueEvent|Schema\RemovedFromProjectIssueEvent|Schema\ConvertedNoteToIssueIssueEvent>|Observable<Schema\Label>|Schema\ConvertedNoteToIssueIssueEvent|Schema\TimelineCommentEvent|Schema\TimelineCrossReferencedEvent|Schema\TimelineCommittedEvent|Schema\TimelineReviewedEvent|Schema\TimelineLineCommentedEvent|Schema\TimelineCommitCommentedEvent|Schema\TimelineAssignedIssueEvent|Schema\TimelineUnassignedIssueEvent|Schema\StateChangeIssueEvent>|Observable<Schema\PullRequestReviewComment>|Observable<Schema\Commit>|Observable<Schema\DiffEntry>|Observable<Schema\PullRequestReview>|Observable<Schema\ReleaseAsset>|Schema\ActionsPublicKey|Schema\ActionsSecret */
60+
/** @return |Observable<Schema\RunnerApplication>|Observable<Schema\CheckAnnotation>|Observable<Schema\Reaction>|Observable<Schema\BranchShort>|Observable<Schema\CommitComment>|Observable<Schema\PullRequestSimple>|Observable<Schema\Status>|Schema\BasicError|Observable<Schema\DependencyGraphDiff>|Observable<Schema\DeploymentStatus>|Observable<Schema\GitRef>|Observable<Schema\HookDeliveryItem>|Observable<Schema\IssueComment>|Observable<Schema\LabeledIssueEvent|Schema\UnlabeledIssueEvent|Schema\AssignedIssueEvent|Schema\UnassignedIssueEvent|Schema\MilestonedIssueEvent|Schema\DemilestonedIssueEvent|Schema\RenamedIssueEvent|Schema\ReviewRequestedIssueEvent|Schema\ReviewRequestRemovedIssueEvent|Schema\ReviewDismissedIssueEvent|Schema\LockedIssueEvent|Schema\AddedToProjectIssueEvent|Schema\MovedColumnInProjectIssueEvent|Schema\RemovedFromProjectIssueEvent|Schema\ConvertedNoteToIssueIssueEvent>|Observable<Schema\Label>|Schema\ConvertedNoteToIssueIssueEvent|Schema\TimelineCommentEvent|Schema\TimelineCrossReferencedEvent|Schema\TimelineCommittedEvent|Schema\TimelineReviewedEvent|Schema\TimelineLineCommentedEvent|Schema\TimelineCommitCommentedEvent|Schema\TimelineAssignedIssueEvent|Schema\TimelineUnassignedIssueEvent|Schema\StateChangeIssueEvent>|Observable<Schema\PullRequestReviewComment>|Observable<Schema\Commit>|Observable<Schema\DiffEntry>|Observable<Schema\PullRequestReview>|Observable<Schema\ReleaseAsset> */
6161
public function call(string $call, array $params, array $pathChunks): Json|Ok|\ApiClients\Client\GitHubEnterprise\Schema\Operations\EnterpriseAdmin\ListLabelsForSelfHostedRunnerForEnterprise\Response\ApplicationJson\Ok|OidcCustomSub|\ApiClients\Client\GitHubEnterprise\Schema\Operations\Actions\ListRepoAccessToSelfHostedRunnerGroupInOrg\Response\ApplicationJson\Ok|\ApiClients\Client\GitHubEnterprise\Schema\Operations\Actions\ListSelfHostedRunnersInGroupForOrg\Response\ApplicationJson\Ok\Application\Json|\ApiClients\Client\GitHubEnterprise\Schema\Operations\Actions\ListSelectedReposForOrgSecret\Response\ApplicationJson\Ok|\ApiClients\Client\GitHubEnterprise\Schema\Operations\Dependabot\ListSelectedReposForOrgSecret\Response\ApplicationJson\Ok\Application\Json|HookDelivery|TeamDiscussion|TeamMembership|WithoutBody|TeamProject|Artifact|ActionsCacheUsageByRepository|ActionsCacheUsagePolicyForRepository|Job|ActionsWorkflowAccessToRepository|SelectedActions|ActionsGetDefaultWorkflowPermissions|iterable|Runner|WorkflowRun|ActionsPublicKey|ActionsSecret|Workflow|BranchProtection|\ApiClients\Client\GitHubEnterprise\Schema\Operations\Checks\ListForSuite\Response\ApplicationJson\Ok|CodeScanningAlert|CodeScanningAnalysis|CodeScanningSarifsStatus|RepositoryCollaboratorPermission|\ApiClients\Client\GitHubEnterprise\Schema\Operations\Checks\ListForRef\Response\ApplicationJson\Ok\Application\Json|\ApiClients\Client\GitHubEnterprise\Schema\Operations\Checks\ListSuitesForRef\Response\ApplicationJson\Ok|CombinedCommitStatus|BasicError|DependabotPublicKey|DependabotSecret|\ApiClients\Client\GitHubEnterprise\Schema\Operations\Repos\ListDeploymentBranchPolicies\Response\ApplicationJson\Ok|Blob|GitCommit|GitRef|GitTag|GitTree|WebhookConfig|IssueComment|IssueEvent|PageBuild|PullRequestReviewComment|PullRequestReviewRequest|ReleaseAsset|Release|SecretScanningAlert|TeamDiscussionComment
6262
{
6363
if ($pathChunks[0] === '') {

0 commit comments

Comments
 (0)