Skip to content

Commit e315b94

Browse files
WyriHaximusgithub-actions[bot]
authored andcommitted
[GitHub] Update to 1.1.4-315e5678f61e5340f76bae356b2788b6 from 1.1.4-9737a21f44d34768b2b336a00c312699
Detected Schema changes:
1 parent e936dde commit e315b94

File tree

130 files changed

+19980
-144
lines changed

Some content is hidden

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

130 files changed

+19980
-144
lines changed

clients/GitHub/README.md

+128
Original file line numberDiff line numberDiff line change
@@ -19149,6 +19149,134 @@ $client->operations()->reactions()->deleteForIssue( owner: 'generated',
1914919149
You can find more about this operation over at the [API method documentation](https://docs.github.com/rest/reactions/reactions#delete-an-issue-reaction).
1915019150

1915119151

19152+
### issues/remove-sub-issue
19153+
19154+
Remove sub-issue
19155+
19156+
Using the `call` method:
19157+
```php
19158+
$client->call('DELETE /repos/{owner}/{repo}/issues/{issue_number}/sub_issue', [
19159+
'owner' => 'generated',
19160+
'repo' => 'generated',
19161+
'issue_number' => 12,
19162+
]);
19163+
```
19164+
19165+
Operations method:
19166+
```php
19167+
$client->operations()->issues()->removeSubIssue( owner: 'generated',
19168+
repo: 'generated',
19169+
issue_number: 12,
19170+
);
19171+
```
19172+
19173+
You can find more about this operation over at the [API method documentation](https://docs.github.com/rest/issues/sub-issues#remove-sub-issue).
19174+
19175+
19176+
### issues/list-sub-issues
19177+
19178+
List sub-issues
19179+
19180+
Using the `call` method:
19181+
```php
19182+
$client->call('GET /repos/{owner}/{repo}/issues/{issue_number}/sub_issues', [
19183+
'owner' => 'generated',
19184+
'repo' => 'generated',
19185+
'issue_number' => 12,
19186+
'per_page' => 8,
19187+
'page' => 1,
19188+
]);
19189+
```
19190+
19191+
Operations method:
19192+
```php
19193+
$client->operations()->issues()->listSubIssues( owner: 'generated',
19194+
repo: 'generated',
19195+
issue_number: 12,
19196+
per_page: 8,
19197+
page: 1,
19198+
);
19199+
```
19200+
19201+
You can find more about this operation over at the [API method documentation](https://docs.github.com/rest/issues/sub-issues#list-sub-issues).
19202+
19203+
19204+
### issues/list-sub-issues
19205+
19206+
List sub-issues
19207+
19208+
Using the `call` method:
19209+
```php
19210+
$client->call('LIST /repos/{owner}/{repo}/issues/{issue_number}/sub_issues', [
19211+
'owner' => 'generated',
19212+
'repo' => 'generated',
19213+
'issue_number' => 12,
19214+
'per_page' => 8,
19215+
'page' => 1,
19216+
]);
19217+
```
19218+
19219+
Operations method:
19220+
```php
19221+
$client->operations()->issues()->listSubIssuesListing( owner: 'generated',
19222+
repo: 'generated',
19223+
issue_number: 12,
19224+
per_page: 8,
19225+
page: 1,
19226+
);
19227+
```
19228+
19229+
You can find more about this operation over at the [API method documentation](https://docs.github.com/rest/issues/sub-issues#list-sub-issues).
19230+
19231+
19232+
### issues/add-sub-issue
19233+
19234+
Add sub-issue
19235+
19236+
Using the `call` method:
19237+
```php
19238+
$client->call('POST /repos/{owner}/{repo}/issues/{issue_number}/sub_issues', [
19239+
'owner' => 'generated',
19240+
'repo' => 'generated',
19241+
'issue_number' => 12,
19242+
]);
19243+
```
19244+
19245+
Operations method:
19246+
```php
19247+
$client->operations()->issues()->addSubIssue( owner: 'generated',
19248+
repo: 'generated',
19249+
issue_number: 12,
19250+
);
19251+
```
19252+
19253+
You can find more about this operation over at the [API method documentation](https://docs.github.com/rest/issues/sub-issues#add-sub-issue).
19254+
19255+
19256+
### issues/reprioritize-sub-issue
19257+
19258+
Reprioritize sub-issue
19259+
19260+
Using the `call` method:
19261+
```php
19262+
$client->call('PATCH /repos/{owner}/{repo}/issues/{issue_number}/sub_issues/priority', [
19263+
'owner' => 'generated',
19264+
'repo' => 'generated',
19265+
'issue_number' => 12,
19266+
]);
19267+
```
19268+
19269+
Operations method:
19270+
```php
19271+
$client->operations()->issues()->reprioritizeSubIssue( owner: 'generated',
19272+
repo: 'generated',
19273+
issue_number: 12,
19274+
);
19275+
```
19276+
19277+
You can find more about this operation over at the [API method documentation](https://docs.github.com/rest/issues/sub-issues#reprioritize-sub-issue).
19278+
19279+
1915219280
### issues/list-events-for-timeline
1915319281

1915419282
List timeline events for an issue

0 commit comments

Comments
 (0)