Skip to content

Commit 22860a5

Browse files
WyriHaximusgithub-actions[bot]
authored andcommitted
[GitHub] Update to 1.1.4-9737a21f44d34768b2b336a00c312699 from 1.1.4-9fb2901e192ade3e8ccc32f59e517598
Detected Schema changes: ``` ├─┬Paths │ ├──[➖] path (39159:3)❌ │ ├─┬/repos/{owner}/{repo}/git/commits/{commit_sha} │ │ └─┬GET │ │ └─┬Responses │ │ └─┬200 │ │ └─┬application/json │ │ └─┬default │ │ └──[🔀] value (215666:9) │ ├─┬/repos/{owner}/{repo}/actions/runs │ │ └─┬GET │ │ └──[🔀] description (19054:20) │ ├─┬/repos/{owner}/{repo}/actions/workflows/{workflow_id}/runs │ │ └─┬GET │ │ └──[🔀] description (20488:20) │ ├─┬/orgs/{org}/rulesets/rule-suites │ │ └─┬GET │ │ └─┬Parameters │ │ ├──[🔀] description (226468:20) │ │ └─┬Schema │ │ └──[🔀] type (226472:15)❌ │ ├─┬/repos/{owner}/{repo}/contents/{path} │ │ ├─┬PUT │ │ │ └─┬Responses │ │ │ ├─┬200 │ │ │ │ └─┬application/json │ │ │ │ └─┬example-for-updating-a-file │ │ │ │ └──[🔀] value (214513:9) │ │ │ └─┬201 │ │ │ └─┬application/json │ │ │ └─┬example-for-creating-a-file │ │ │ └──[🔀] value (214555:9) │ │ └─┬DELETE │ │ └─┬Responses │ │ └─┬200 │ │ └─┬application/json │ │ └─┬default │ │ └──[🔀] value (214597:9) │ └─┬/repos/{owner}/{repo}/git/commits │ └─┬POST │ └─┬Responses │ └─┬201 │ └─┬application/json │ └─┬default │ └──[🔀] value (215639:9) └─┬Components ├──[➖] examples (220100:7)❌ ├──[➖] schemas (89349:7)❌ ├──[➖] schemas (89371:7)❌ ├─┬webhook-status │ └─┬commit │ └─┬commit │ └─┬verification │ └──[➖] properties (192128:21)❌ ├─┬git-commit │ └─┬verification │ └──[➖] properties (85255:13)❌ ├─┬verification │ └──[➖] properties (80845:9)❌ ├─┬file-commit │ └─┬commit │ └─┬verification │ └──[➖] properties (84032:17)❌ └─┬timeline-committed-event └─┬verification └──[➖] properties (86942:13)❌ ``` | Document Element | Total Changes | Breaking Changes | |------------------|---------------|------------------| | paths | 10 | 2 | | components | 8 | 8 | Date: 11/27/24 | Commit: New: etc/specs/GitHub/previous.spec.yaml, Original: etc/specs/GitHub/current.spec.yaml - ❌ **BREAKING Changes**: _10_ out of _18_ - **Modifications**: _9_ - **Removals**: _9_ - **Breaking Removals**: _9_ - **Breaking Modifications**: _1_ ERROR: breaking changes discovered
1 parent beee8ea commit 22860a5

File tree

65 files changed

+1705
-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.

65 files changed

+1705
-144
lines changed

clients/GitHub/README.md

+26-4
Original file line numberDiff line numberDiff line change
@@ -8277,7 +8277,7 @@ Using the `call` method:
82778277
$client->call('GET /orgs/{org}/rulesets/rule-suites', [
82788278
'org' => 'generated',
82798279
'ref' => 'generated',
8280-
'repository_name' => 15,
8280+
'repository_name' => 'generated',
82818281
'actor_name' => 'generated',
82828282
'time_period' => 'generated',
82838283
'rule_suite_result' => 'generated',
@@ -8290,7 +8290,7 @@ Operations method:
82908290
```php
82918291
$client->operations()->repos()->getOrgRuleSuites( org: 'generated',
82928292
ref: 'generated',
8293-
repository_name: 15,
8293+
repository_name: 'generated',
82948294
actor_name: 'generated',
82958295
time_period: 'generated',
82968296
rule_suite_result: 'generated',
@@ -8311,7 +8311,7 @@ Using the `call` method:
83118311
$client->call('LIST /orgs/{org}/rulesets/rule-suites', [
83128312
'org' => 'generated',
83138313
'ref' => 'generated',
8314-
'repository_name' => 15,
8314+
'repository_name' => 'generated',
83158315
'actor_name' => 'generated',
83168316
'time_period' => 'generated',
83178317
'rule_suite_result' => 'generated',
@@ -8324,7 +8324,7 @@ Operations method:
83248324
```php
83258325
$client->operations()->repos()->getOrgRuleSuitesListing( org: 'generated',
83268326
ref: 'generated',
8327-
repository_name: 15,
8327+
repository_name: 'generated',
83288328
actor_name: 'generated',
83298329
time_period: 'generated',
83308330
rule_suite_result: 'generated',
@@ -22463,6 +22463,28 @@ $client->operations()->secretScanning()->createPushProtectionBypass( owne
2246322463
You can find more about this operation over at the [API method documentation](https://docs.github.com/rest/secret-scanning/secret-scanning#create-a-push-protection-bypass).
2246422464

2246522465

22466+
### secret-scanning/get-scan-history
22467+
22468+
Get secret scanning scan history for a repository
22469+
22470+
Using the `call` method:
22471+
```php
22472+
$client->call('GET /repos/{owner}/{repo}/secret-scanning/scan-history', [
22473+
'owner' => 'generated',
22474+
'repo' => 'generated',
22475+
]);
22476+
```
22477+
22478+
Operations method:
22479+
```php
22480+
$client->operations()->secretScanning()->getScanHistory( owner: 'generated',
22481+
repo: 'generated',
22482+
);
22483+
```
22484+
22485+
You can find more about this operation over at the [API method documentation](https://docs.github.com/rest/secret-scanning/secret-scanning#get-secret-scanning-scan-history-for-a-repository).
22486+
22487+
2246622488
### security-advisories/list-repository-advisories
2246722489

2246822490
List repository security advisories

0 commit comments

Comments
 (0)