Skip to content

Commit d2d62a1

Browse files
authored
Merge pull request #1450 from php-api-clients/GitHubEnterprise-3.14/from-1.1.4-9e7e4db41342903bf3c77344139c3a4e-from-1.1.4-9e7e4db41342903bf3c77344139c3a4e
2 parents b77c718 + 78d87fa commit d2d62a1

File tree

4 files changed

+23
-23
lines changed

4 files changed

+23
-23
lines changed

clients/GitHubEnterprise-3.14/README.md

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

1339413394
### repos/check-automated-security-fixes
1339513395

13396-
Check if automated security fixes are enabled for a repository
13396+
Check if Dependabot security updates are enabled for a repository
1339713397

1339813398
Using the `call` method:
1339913399
```php
@@ -13410,7 +13410,7 @@ $client->operations()->repos()->checkAutomatedSecurityFixes( owner: 'gene
1341013410
);
1341113411
```
1341213412

13413-
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).
13413+
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).
1341413414

1341513415

1341613416
### repos/list-branches

clients/GitHubEnterprise-3.14/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": "367f32bf494235e374bb29152728db12",
2+
"specHash": "9e7e4db41342903bf3c77344139c3a4e",
33
"generatedFiles": {
44
"files": [
55
{
@@ -14528,7 +14528,7 @@
1452814528
},
1452914529
{
1453014530
"name": ".\/clients\/GitHubEnterprise-3.14\/etc\/..\/\/src\/\/Schema\/CheckAutomatedSecurityFixes.php",
14531-
"hash": "8b3e4e3b089e11c7a2a5c1af8fd12226"
14531+
"hash": "02e7a629d3aa691c6e924695c315f095"
1453214532
},
1453314533
{
1453414534
"name": ".\/clients\/GitHubEnterprise-3.14\/etc\/..\/\/src\/\/Schema\/ProtectedBranchRequiredStatusCheck.php",
@@ -30304,7 +30304,7 @@
3030430304
},
3030530305
{
3030630306
"name": "..\/..\/composer.lock",
30307-
"hash": "9968921f0959a081d8998c22c95e7f44"
30307+
"hash": "ba3412e727d85b330527d34ff8accb9e"
3030830308
}
3030930309
]
3031030310
}

clients/GitHubEnterprise-3.14/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.14/current.spec.yaml

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -22794,17 +22794,17 @@ paths:
2279422794
subcategory: autolinks
2279522795
"/repos/{owner}/{repo}/automated-security-fixes":
2279622796
get:
22797-
summary: Check if automated security fixes are enabled for a repository
22798-
description: Shows whether automated security fixes are enabled, disabled or
22799-
paused for a repository. The authenticated user must have admin read access
22800-
to the repository. For more information, see "[Configuring automated security
22801-
fixes](https://docs.github.com/[email protected]/articles/configuring-automated-security-fixes)".
22797+
summary: Check if Dependabot security updates are enabled for a repository
22798+
description: Shows whether Dependabot security updates are enabled, disabled
22799+
or paused for a repository. The authenticated user must have admin read access
22800+
to the repository. For more information, see "[Configuring Dependabot security
22801+
updates](https://docs.github.com/[email protected]/articles/configuring-automated-security-fixes)".
2280222802
tags:
2280322803
- repos
2280422804
operationId: repos/check-automated-security-fixes
2280522805
externalDocs:
2280622806
description: API method documentation
22807-
url: https://docs.github.com/[email protected]/rest/repos/repos#check-if-automated-security-fixes-are-enabled-for-a-repository
22807+
url: https://docs.github.com/[email protected]/rest/repos/repos#check-if-dependabot-security-updates-are-enabled-for-a-repository
2280822808
parameters:
2280922809
- "$ref": "#/components/parameters/owner"
2281022810
- "$ref": "#/components/parameters/repo"
@@ -80016,18 +80016,18 @@ components:
8001680016
- url_template
8001780017
- is_alphanumeric
8001880018
check-automated-security-fixes:
80019-
title: Check Automated Security Fixes
80020-
description: Check Automated Security Fixes
80019+
title: Check Dependabot security updates
80020+
description: Check Dependabot security updates
8002180021
type: object
8002280022
properties:
8002380023
enabled:
8002480024
type: boolean
80025-
description: Whether automated security fixes are enabled for the repository.
80025+
description: Whether Dependabot security updates are enabled for the repository.
8002680026
examples:
8002780027
- true
8002880028
paused:
8002980029
type: boolean
80030-
description: Whether automated security fixes are paused for the repository.
80030+
description: Whether Dependabot security updates are paused for the repository.
8003180031
examples:
8003280032
- false
8003380033
required:

0 commit comments

Comments
 (0)