Skip to content

Commit 956f966

Browse files
WyriHaximusgithub-actions[bot]
authored andcommitted
[GitHubEnterprise-3.13] Update to 1.1.4-137676a6235fb7b69c005e84a24e1466 from 1.1.4-497f4757745d55b121a2ab0c966f454f
Detected Schema changes: ``` ├─┬Paths │ └─┬/repos/{owner}/{repo}/automated-security-fixes │ └─┬GET │ ├──[🔀] summary (22178:16) │ ├──[🔀] description (22179:20) │ └─┬External Docs │ └──[🔀] url (22188:14) └─┬Components └─┬check-automated-security-fixes ├──[🔀] title (78654:14) ├──[🔀] description (78655:20) ├─┬paused │ └──[🔀] description (78665:24) └─┬enabled └──[🔀] description (78660:24) ``` | Document Element | Total Changes | Breaking Changes | |------------------|---------------|------------------| | paths | 3 | 0 | | components | 4 | 0 | Date: 01/15/25 | Commit: New: etc/specs/GitHubEnterprise-3.13/previous.spec.yaml, Original: etc/specs/GitHubEnterprise-3.13/current.spec.yaml - **Total Changes**: _7_ - **Modifications**: _7_
1 parent 315b8e4 commit 956f966

File tree

4 files changed

+23
-23
lines changed

4 files changed

+23
-23
lines changed

clients/GitHubEnterprise-3.13/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13023,7 +13023,7 @@ You can find more about this operation over at the [API method documentation](ht
1302313023

1302413024
### repos/check-automated-security-fixes
1302513025

13026-
Check if automated security fixes are enabled for a repository
13026+
Check if Dependabot security updates are enabled for a repository
1302713027

1302813028
Using the `call` method:
1302913029
```php
@@ -13040,7 +13040,7 @@ $client->operations()->repos()->checkAutomatedSecurityFixes( owner: 'gene
1304013040
);
1304113041
```
1304213042

13043-
You can find more about this operation over at the [API method documentation](https://docs.github.com/[email protected]/rest/repos/repos#check-if-automated-security-fixes-are-enabled-for-a-repository).
13043+
You can find more about this operation over at the [API method documentation](https://docs.github.com/[email protected]/rest/repos/repos#check-if-dependabot-security-updates-are-enabled-for-a-repository).
1304413044

1304513045

1304613046
### repos/list-branches

clients/GitHubEnterprise-3.13/etc/openapi-client-generator.state

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"specHash": "497f4757745d55b121a2ab0c966f454f",
2+
"specHash": "137676a6235fb7b69c005e84a24e1466",
33
"generatedFiles": {
44
"files": [
55
{
@@ -14332,7 +14332,7 @@
1433214332
},
1433314333
{
1433414334
"name": ".\/clients\/GitHubEnterprise-3.13\/etc\/..\/\/src\/\/Schema\/CheckAutomatedSecurityFixes.php",
14335-
"hash": "8b3e4e3b089e11c7a2a5c1af8fd12226"
14335+
"hash": "02e7a629d3aa691c6e924695c315f095"
1433614336
},
1433714337
{
1433814338
"name": ".\/clients\/GitHubEnterprise-3.13\/etc\/..\/\/src\/\/Schema\/ProtectedBranchRequiredStatusCheck.php",
@@ -29988,7 +29988,7 @@
2998829988
},
2998929989
{
2999029990
"name": "..\/..\/composer.lock",
29991-
"hash": "9968921f0959a081d8998c22c95e7f44"
29991+
"hash": "ba3412e727d85b330527d34ff8accb9e"
2999229992
}
2999329993
]
2999429994
}

clients/GitHubEnterprise-3.13/src/Schema/CheckAutomatedSecurityFixes.php

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
final readonly class CheckAutomatedSecurityFixes
88
{
99
public const SCHEMA_JSON = '{
10-
"title": "Check Automated Security Fixes",
10+
"title": "Check Dependabot security updates",
1111
"required": [
1212
"enabled",
1313
"paused"
@@ -16,31 +16,31 @@
1616
"properties": {
1717
"enabled": {
1818
"type": "boolean",
19-
"description": "Whether automated security fixes are enabled for the repository.",
19+
"description": "Whether Dependabot security updates are enabled for the repository.",
2020
"examples": [
2121
true
2222
]
2323
},
2424
"paused": {
2525
"type": "boolean",
26-
"description": "Whether automated security fixes are paused for the repository.",
26+
"description": "Whether Dependabot security updates are paused for the repository.",
2727
"examples": [
2828
false
2929
]
3030
}
3131
},
32-
"description": "Check Automated Security Fixes"
32+
"description": "Check Dependabot security updates"
3333
}';
34-
public const SCHEMA_TITLE = 'Check Automated Security Fixes';
35-
public const SCHEMA_DESCRIPTION = 'Check Automated Security Fixes';
34+
public const SCHEMA_TITLE = 'Check Dependabot security updates';
35+
public const SCHEMA_DESCRIPTION = 'Check Dependabot security updates';
3636
public const SCHEMA_EXAMPLE_DATA = '{
3737
"enabled": true,
3838
"paused": false
3939
}';
4040

4141
/**
42-
* enabled: Whether automated security fixes are enabled for the repository.
43-
* paused: Whether automated security fixes are paused for the repository.
42+
* enabled: Whether Dependabot security updates are enabled for the repository.
43+
* paused: Whether Dependabot security updates are paused for the repository.
4444
*/
4545
public function __construct(public bool $enabled, public bool $paused)
4646
{

etc/specs/GitHubEnterprise-3.13/current.spec.yaml

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -22175,17 +22175,17 @@ paths:
2217522175
subcategory: autolinks
2217622176
"/repos/{owner}/{repo}/automated-security-fixes":
2217722177
get:
22178-
summary: Check if automated security fixes are enabled for a repository
22179-
description: Shows whether automated security fixes are enabled, disabled or
22180-
paused for a repository. The authenticated user must have admin read access
22181-
to the repository. For more information, see "[Configuring automated security
22182-
fixes](https://docs.github.com/[email protected]/articles/configuring-automated-security-fixes)".
22178+
summary: Check if Dependabot security updates are enabled for a repository
22179+
description: Shows whether Dependabot security updates are enabled, disabled
22180+
or paused for a repository. The authenticated user must have admin read access
22181+
to the repository. For more information, see "[Configuring Dependabot security
22182+
updates](https://docs.github.com/[email protected]/articles/configuring-automated-security-fixes)".
2218322183
tags:
2218422184
- repos
2218522185
operationId: repos/check-automated-security-fixes
2218622186
externalDocs:
2218722187
description: API method documentation
22188-
url: https://docs.github.com/[email protected]/rest/repos/repos#check-if-automated-security-fixes-are-enabled-for-a-repository
22188+
url: https://docs.github.com/[email protected]/rest/repos/repos#check-if-dependabot-security-updates-are-enabled-for-a-repository
2218922189
parameters:
2219022190
- "$ref": "#/components/parameters/owner"
2219122191
- "$ref": "#/components/parameters/repo"
@@ -78651,18 +78651,18 @@ components:
7865178651
- url_template
7865278652
- is_alphanumeric
7865378653
check-automated-security-fixes:
78654-
title: Check Automated Security Fixes
78655-
description: Check Automated Security Fixes
78654+
title: Check Dependabot security updates
78655+
description: Check Dependabot security updates
7865678656
type: object
7865778657
properties:
7865878658
enabled:
7865978659
type: boolean
78660-
description: Whether automated security fixes are enabled for the repository.
78660+
description: Whether Dependabot security updates are enabled for the repository.
7866178661
examples:
7866278662
- true
7866378663
paused:
7866478664
type: boolean
78665-
description: Whether automated security fixes are paused for the repository.
78665+
description: Whether Dependabot security updates are paused for the repository.
7866678666
examples:
7866778667
- false
7866878668
required:

0 commit comments

Comments
 (0)