Skip to content

Commit ab52f43

Browse files
authored
Merge pull request #23954 from github/repo-sync
repo sync
2 parents 665619f + d646005 commit ab52f43

File tree

7 files changed

+103
-0
lines changed

7 files changed

+103
-0
lines changed

data/graphql/ghae/schema.docs-ghae.graphql

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -34377,6 +34377,16 @@ type Repository implements Node & ProjectOwner & RepositoryInfo & Starrable & Su
3437734377
"""
3437834378
visibility: RepositoryVisibility!
3437934379

34380+
"""
34381+
Returns a single vulnerability alert from the current repository by number.
34382+
"""
34383+
vulnerabilityAlert(
34384+
"""
34385+
The number for the vulnerability alert to be returned.
34386+
"""
34387+
number: Int!
34388+
): RepositoryVulnerabilityAlert
34389+
3438034390
"""
3438134391
A list of vulnerability alerts that are on this repository.
3438234392
"""

data/graphql/ghec/schema.docs.graphql

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -41004,6 +41004,16 @@ type Repository implements Node & PackageOwner & ProjectOwner & ProjectV2Recent
4100441004
"""
4100541005
visibility: RepositoryVisibility!
4100641006

41007+
"""
41008+
Returns a single vulnerability alert from the current repository by number.
41009+
"""
41010+
vulnerabilityAlert(
41011+
"""
41012+
The number for the vulnerability alert to be returned.
41013+
"""
41014+
number: Int!
41015+
): RepositoryVulnerabilityAlert
41016+
4100741017
"""
4100841018
A list of vulnerability alerts that are on this repository.
4100941019
"""

data/graphql/schema.docs.graphql

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -41004,6 +41004,16 @@ type Repository implements Node & PackageOwner & ProjectOwner & ProjectV2Recent
4100441004
"""
4100541005
visibility: RepositoryVisibility!
4100641006

41007+
"""
41008+
Returns a single vulnerability alert from the current repository by number.
41009+
"""
41010+
vulnerabilityAlert(
41011+
"""
41012+
The number for the vulnerability alert to be returned.
41013+
"""
41014+
number: Int!
41015+
): RepositoryVulnerabilityAlert
41016+
4100741017
"""
4100841018
A list of vulnerability alerts that are on this repository.
4100941019
"""

src/graphql/data/changelog.json

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,17 @@
11
[
2+
{
3+
"schemaChanges": [
4+
{
5+
"title": "The GraphQL schema includes these changes:",
6+
"changes": [
7+
"<p>Field <code>vulnerabilityAlert</code> was added to object type <code>Repository</code></p>"
8+
]
9+
}
10+
],
11+
"previewChanges": [],
12+
"upcomingChanges": [],
13+
"date": "2023-02-15"
14+
},
215
{
316
"schemaChanges": [
417
{

src/graphql/data/schema-dotcom.json

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -57733,6 +57733,26 @@
5773357733
"kind": "enums",
5773457734
"href": "/graphql/reference/enums#repositoryvisibility"
5773557735
},
57736+
{
57737+
"name": "vulnerabilityAlert",
57738+
"description": "<p>Returns a single vulnerability alert from the current repository by number.</p>",
57739+
"type": "RepositoryVulnerabilityAlert",
57740+
"id": "repositoryvulnerabilityalert",
57741+
"kind": "objects",
57742+
"href": "/graphql/reference/objects#repositoryvulnerabilityalert",
57743+
"arguments": [
57744+
{
57745+
"name": "number",
57746+
"description": "<p>The number for the vulnerability alert to be returned.</p>",
57747+
"type": {
57748+
"name": "Int!",
57749+
"id": "int",
57750+
"kind": "scalars",
57751+
"href": "/graphql/reference/scalars#int"
57752+
}
57753+
}
57754+
]
57755+
},
5773657756
{
5773757757
"name": "vulnerabilityAlerts",
5773857758
"description": "<p>A list of vulnerability alerts that are on this repository.</p>",

src/graphql/data/schema-ghae.json

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -48841,6 +48841,26 @@
4884148841
"kind": "enums",
4884248842
"href": "/graphql/reference/enums#repositoryvisibility"
4884348843
},
48844+
{
48845+
"name": "vulnerabilityAlert",
48846+
"description": "<p>Returns a single vulnerability alert from the current repository by number.</p>",
48847+
"type": "RepositoryVulnerabilityAlert",
48848+
"id": "repositoryvulnerabilityalert",
48849+
"kind": "objects",
48850+
"href": "/graphql/reference/objects#repositoryvulnerabilityalert",
48851+
"arguments": [
48852+
{
48853+
"name": "number",
48854+
"description": "<p>The number for the vulnerability alert to be returned.</p>",
48855+
"type": {
48856+
"name": "Int!",
48857+
"id": "int",
48858+
"kind": "scalars",
48859+
"href": "/graphql/reference/scalars#int"
48860+
}
48861+
}
48862+
]
48863+
},
4884448864
{
4884548865
"name": "vulnerabilityAlerts",
4884648866
"description": "<p>A list of vulnerability alerts that are on this repository.</p>",

src/graphql/data/schema-ghec.json

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -57733,6 +57733,26 @@
5773357733
"kind": "enums",
5773457734
"href": "/graphql/reference/enums#repositoryvisibility"
5773557735
},
57736+
{
57737+
"name": "vulnerabilityAlert",
57738+
"description": "<p>Returns a single vulnerability alert from the current repository by number.</p>",
57739+
"type": "RepositoryVulnerabilityAlert",
57740+
"id": "repositoryvulnerabilityalert",
57741+
"kind": "objects",
57742+
"href": "/graphql/reference/objects#repositoryvulnerabilityalert",
57743+
"arguments": [
57744+
{
57745+
"name": "number",
57746+
"description": "<p>The number for the vulnerability alert to be returned.</p>",
57747+
"type": {
57748+
"name": "Int!",
57749+
"id": "int",
57750+
"kind": "scalars",
57751+
"href": "/graphql/reference/scalars#int"
57752+
}
57753+
}
57754+
]
57755+
},
5773657756
{
5773757757
"name": "vulnerabilityAlerts",
5773857758
"description": "<p>A list of vulnerability alerts that are on this repository.</p>",

0 commit comments

Comments
 (0)