Skip to content

Commit 49e49f5

Browse files
authored
[GitHubEnterprise-3.6] Update to 1.1.4-34d12e9c9f557d2d2977464d5cd49398 from 1.1.4-34d12e9c9f557d2d2977464d5cd49398
Detected Schema changes: starting work. Building original model for commit a763b4 SUCCESS: No changes detected SPEC: extracted 1 commits from history DONE: completed
1 parent 988adba commit 49e49f5

Some content is hidden

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

41 files changed

+131
-88
lines changed

Diff for: clients/GitHubEnterprise-3.6/etc/openapi-client-generator.state

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

Diff for: clients/GitHubEnterprise-3.6/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);

Diff for: clients/GitHubEnterprise-3.6/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);

Diff for: clients/GitHubEnterprise-3.6/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);

Diff for: clients/GitHubEnterprise-3.6/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);

Diff for: clients/GitHubEnterprise-3.6/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);

Diff for: clients/GitHubEnterprise-3.6/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);

Diff for: clients/GitHubEnterprise-3.6/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);

Diff for: clients/GitHubEnterprise-3.6/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);

Diff for: clients/GitHubEnterprise-3.6/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);

Diff for: clients/GitHubEnterprise-3.6/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);

Diff for: clients/GitHubEnterprise-3.6/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);

Diff for: clients/GitHubEnterprise-3.6/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);

Diff for: clients/GitHubEnterprise-3.6/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);

Diff for: clients/GitHubEnterprise-3.6/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);

Diff for: clients/GitHubEnterprise-3.6/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);

Diff for: clients/GitHubEnterprise-3.6/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);

Diff for: clients/GitHubEnterprise-3.6/src/Internal/Router/Delete/Actions.php

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

174+
/** @return */
174175
public function deleteEnvironmentSecret(array $params): WithoutBody
175176
{
176177
$arguments = [];

Diff for: clients/GitHubEnterprise-3.6/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] === '') {

Diff for: clients/GitHubEnterprise-3.6/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 = [];

Diff for: clients/GitHubEnterprise-3.6/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] === '') {

Diff for: clients/GitHubEnterprise-3.6/src/Internal/Router/Delete/Six.php

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

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

Diff for: clients/GitHubEnterprise-3.6/src/Internal/Router/Get/Actions.php

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

508+
/** @return */
508509
public function listEnvironmentSecrets(array $params): \ApiClients\Client\GitHubEnterprise\Schema\Operations\Actions\ListEnvironmentSecrets\Response\ApplicationJson\Ok\Application\Json
509510
{
510511
$arguments = [];
@@ -1074,6 +1075,7 @@ public function getWorkflow(array $params): Workflow
10741075
return $operator->call($arguments['owner'], $arguments['repo'], $arguments['workflow_id']);
10751076
}
10761077

1078+
/** @return */
10771079
public function getEnvironmentPublicKey(array $params): ActionsPublicKey
10781080
{
10791081
$arguments = [];
@@ -1094,6 +1096,7 @@ public function getEnvironmentPublicKey(array $params): ActionsPublicKey
10941096
return $operator->call($arguments['repository_id'], $arguments['environment_name']);
10951097
}
10961098

1099+
/** @return */
10971100
public function getEnvironmentSecret(array $params): ActionsSecret
10981101
{
10991102
$arguments = [];

Diff for: clients/GitHubEnterprise-3.6/src/Internal/Router/Get/Eight.php

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

28-
/** @return Observable<Schema\TeamDiscussionComment>|Observable<Schema\Reaction>||Observable<Schema\EnvironmentApprovals>|Observable<Schema\PendingDeployment>|Observable<Schema\CodeScanningAlertInstance>|Schema\DeploymentBranchPolicy|Observable<Schema\SecretScanningLocation>|WithoutBody */
28+
/** @return Observable<Schema\TeamDiscussionComment>|Observable<Schema\Reaction>||Observable<Schema\EnvironmentApprovals>|Observable<Schema\PendingDeployment>|Observable<Schema\CodeScanningAlertInstance>|Observable<Schema\SecretScanningLocation>|WithoutBody */
2929
public function call(string $call, array $params, array $pathChunks): iterable|TeamRepository|WithoutBody|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
3030
{
3131
if ($pathChunks[0] === '') {

Diff for: clients/GitHubEnterprise-3.6/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 = [];

Diff for: clients/GitHubEnterprise-3.6/src/Internal/Router/Get/Seven.php

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

59-
/** @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 */
59+
/** @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> */
6060
public function call(string $call, array $params, array $pathChunks): Json|Ok|\ApiClients\Client\GitHubEnterprise\Schema\Operations\EnterpriseAdmin\ListLabelsForSelfHostedRunnerForEnterprise\Response\ApplicationJson\Ok|\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
6161
{
6262
if ($pathChunks[0] === '') {

0 commit comments

Comments
 (0)