Skip to content

Commit cd2be02

Browse files
authored
[GitHubAE] Update to 1.1.4-685363466de14cc34165c665b088a065 from 1.1.4-71eee93b8961601b8bc06eb2182d9151
Detected Schema changes: └─┬Paths ├─┬/repos/{owner}/{repo}/code-scanning/analyses │ └─┬GET │ └──[M] description (16355:20) ├─┬/repos/{owner}/{repo}/code-scanning/alerts/{alert_number}/instances │ └─┬GET │ └──[M] description (16311:20) ├─┬/orgs/{org}/code-scanning/alerts │ └─┬GET │ └──[M] description (6487:20) ├─┬/repos/{owner}/{repo}/code-scanning/alerts/{alert_number} │ └─┬GET │ └──[M] description (16214:20) ├─┬/repos/{owner}/{repo}/code-scanning/alerts │ └─┬GET │ └──[M] description (16136:20) ├─┬/repos/{owner}/{repo}/code-scanning/sarifs/{sarif_id} │ └─┬GET │ └──[M] description (16735:20) └─┬/repos/{owner}/{repo}/code-scanning/analyses/{analysis_id} └─┬GET └──[M] description (16436:20) Date: 11/10/23 | Commit: New: etc/specs/GitHubAE/previous.spec.yaml, Original: etc/specs/GitHubAE/current.spec.yaml Document Element | Total Changes | Breaking Changes paths | 7 | 0 INFO: Total Changes: 7 INFO: Modifications: 7
1 parent 238ebbf commit cd2be02

File tree

957 files changed

+4982
-3473
lines changed

Some content is hidden

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

957 files changed

+4982
-3473
lines changed

etc/openapi-client-generator.state

Lines changed: 985 additions & 985 deletions
Large diffs are not rendered by default.

src/Internal/Operator/Actions/AddSelectedRepoToOrgSecret.php

Lines changed: 1 addition & 0 deletions
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 $org, string $secretName, int $repositoryId): WithoutBody
2627
{
2728
$operation = new \ApiClients\Client\GitHubAE\Internal\Operation\Actions\AddSelectedRepoToOrgSecret($org, $secretName, $repositoryId);

src/Internal/Operator/Actions/AddSelfHostedRunnerToGroupForOrg.php

Lines changed: 1 addition & 0 deletions
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 $org, int $runnerGroupId, int $runnerId): WithoutBody
2627
{
2728
$operation = new \ApiClients\Client\GitHubAE\Internal\Operation\Actions\AddSelfHostedRunnerToGroupForOrg($org, $runnerGroupId, $runnerId);

src/Internal/Operator/Actions/CancelWorkflowRun.php

Lines changed: 1 addition & 0 deletions
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, int $runId): EmptyObject
2829
{
2930
$operation = new \ApiClients\Client\GitHubAE\Internal\Operation\Actions\CancelWorkflowRun($this->responseSchemaValidator, $this->hydrator, $owner, $repo, $runId);

src/Internal/Operator/Actions/CreateOrUpdateOrgSecret.php

Lines changed: 1 addition & 0 deletions
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 $org, string $secretName, array $params): EmptyObject|WithoutBody
2930
{
3031
$operation = new \ApiClients\Client\GitHubAE\Internal\Operation\Actions\CreateOrUpdateOrgSecret($this->requestSchemaValidator, $this->responseSchemaValidator, $this->hydrator, $org, $secretName);

src/Internal/Operator/Actions/CreateOrUpdateRepoSecret.php

Lines changed: 1 addition & 0 deletions
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 $secretName, array $params): EmptyObject|WithoutBody
2930
{
3031
$operation = new \ApiClients\Client\GitHubAE\Internal\Operation\Actions\CreateOrUpdateRepoSecret($this->requestSchemaValidator, $this->responseSchemaValidator, $this->hydrator, $owner, $repo, $secretName);

src/Internal/Operator/Actions/CreateRegistrationTokenForOrg.php

Lines changed: 1 addition & 0 deletions
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): AuthenticationToken
2829
{
2930
$operation = new \ApiClients\Client\GitHubAE\Internal\Operation\Actions\CreateRegistrationTokenForOrg($this->responseSchemaValidator, $this->hydrator, $org);

src/Internal/Operator/Actions/CreateRegistrationTokenForRepo.php

Lines changed: 1 addition & 0 deletions
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): AuthenticationToken
2829
{
2930
$operation = new \ApiClients\Client\GitHubAE\Internal\Operation\Actions\CreateRegistrationTokenForRepo($this->responseSchemaValidator, $this->hydrator, $owner, $repo);

src/Internal/Operator/Actions/CreateRemoveTokenForOrg.php

Lines changed: 1 addition & 0 deletions
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): AuthenticationToken
2829
{
2930
$operation = new \ApiClients\Client\GitHubAE\Internal\Operation\Actions\CreateRemoveTokenForOrg($this->responseSchemaValidator, $this->hydrator, $org);

src/Internal/Operator/Actions/CreateRemoveTokenForRepo.php

Lines changed: 1 addition & 0 deletions
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): AuthenticationToken
2829
{
2930
$operation = new \ApiClients\Client\GitHubAE\Internal\Operation\Actions\CreateRemoveTokenForRepo($this->responseSchemaValidator, $this->hydrator, $owner, $repo);

0 commit comments

Comments
 (0)