Skip to content

[GitHub] Update to 1.1.4-97ae665c50dc0af2640cf572009dd76b from 1.1.4-356ea13d8867f0f4f84319bdf06dc720 #1217

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
108 changes: 108 additions & 0 deletions clients/GitHub/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3440,6 +3440,34 @@ $client->operations()->actions()->removeSelectedRepoFromOrgVariable( org:
You can find more about this operation over at the [API method documentation](https://docs.github.com/rest/actions/variables#remove-selected-repository-from-an-organization-variable).


### orgs/list-attestations

List attestations

Using the `call` method:
```php
$client->call('GET /orgs/{org}/attestations/{subject_digest}', [
'before' => 'generated',
'after' => 'generated',
'org' => 'generated',
'subject_digest' => 'generated',
'per_page' => 8,
]);
```

Operations method:
```php
$client->operations()->orgs()->listAttestations( before: 'generated',
after: 'generated',
org: 'generated',
subject_digest: 'generated',
per_page: 8,
);
```

You can find more about this operation over at the [API method documentation](https://docs.github.com/rest/orgs/orgs#list-attestations).


### orgs/list-blocked-users

List users blocked by an organization
Expand Down Expand Up @@ -11509,6 +11537,58 @@ $client->operations()->issues()->checkUserCanBeAssigned( owner: 'generate
You can find more about this operation over at the [API method documentation](https://docs.github.com/rest/issues/assignees#check-if-a-user-can-be-assigned).


### repos/create-attestation

Create an attestation

Using the `call` method:
```php
$client->call('POST /repos/{owner}/{repo}/attestations', [
'owner' => 'generated',
'repo' => 'generated',
]);
```

Operations method:
```php
$client->operations()->repos()->createAttestation( owner: 'generated',
repo: 'generated',
);
```

You can find more about this operation over at the [API method documentation](https://docs.github.com/rest/repos/repos#create-an-attestation).


### repos/list-attestations

List attestations

Using the `call` method:
```php
$client->call('GET /repos/{owner}/{repo}/attestations/{subject_digest}', [
'owner' => 'generated',
'repo' => 'generated',
'before' => 'generated',
'after' => 'generated',
'subject_digest' => 'generated',
'per_page' => 8,
]);
```

Operations method:
```php
$client->operations()->repos()->listAttestations( owner: 'generated',
repo: 'generated',
before: 'generated',
after: 'generated',
subject_digest: 'generated',
per_page: 8,
);
```

You can find more about this operation over at the [API method documentation](https://docs.github.com/rest/repos/repos#list-attestations).


### repos/list-autolinks

Get all autolinks of a repository
Expand Down Expand Up @@ -26024,6 +26104,34 @@ $client->operations()->users()->getByUsername( username: 'generated',
You can find more about this operation over at the [API method documentation](https://docs.github.com/rest/users/users#get-a-user).


### users/list-attestations

List attestations

Using the `call` method:
```php
$client->call('GET /users/{username}/attestations/{subject_digest}', [
'before' => 'generated',
'after' => 'generated',
'username' => 'generated',
'subject_digest' => 'generated',
'per_page' => 8,
]);
```

Operations method:
```php
$client->operations()->users()->listAttestations( before: 'generated',
after: 'generated',
username: 'generated',
subject_digest: 'generated',
per_page: 8,
);
```

You can find more about this operation over at the [API method documentation](https://docs.github.com/rest/users/attestations#list-attestations).


### packages/list-docker-migration-conflicting-packages-for-user

Get list of conflicting packages during Docker migration for user
Expand Down
Loading