Skip to content

Commit f708d4a

Browse files
authored
Merge pull request #24871 from github/repo-sync
repo sync
2 parents a1f5153 + cea8fcb commit f708d4a

File tree

7 files changed

+28
-12
lines changed

7 files changed

+28
-12
lines changed

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

+3-2
Original file line numberDiff line numberDiff line change
@@ -641,9 +641,10 @@ input AddPullRequestReviewThreadInput {
641641
clientMutationId: String
642642

643643
"""
644-
The line of the blob to which the thread refers. The end of the line range for multi-line comments.
644+
The line of the blob to which the thread refers, required for line-level
645+
threads. The end of the line range for multi-line comments.
645646
"""
646-
line: Int!
647+
line: Int
647648

648649
"""
649650
Path to the file being commented on.

data/graphql/ghec/schema.docs.graphql

+3-2
Original file line numberDiff line numberDiff line change
@@ -808,9 +808,10 @@ input AddPullRequestReviewThreadInput {
808808
clientMutationId: String
809809

810810
"""
811-
The line of the blob to which the thread refers. The end of the line range for multi-line comments.
811+
The line of the blob to which the thread refers, required for line-level
812+
threads. The end of the line range for multi-line comments.
812813
"""
813-
line: Int!
814+
line: Int
814815

815816
"""
816817
Path to the file being commented on.

data/graphql/schema.docs.graphql

+3-2
Original file line numberDiff line numberDiff line change
@@ -808,9 +808,10 @@ input AddPullRequestReviewThreadInput {
808808
clientMutationId: String
809809

810810
"""
811-
The line of the blob to which the thread refers. The end of the line range for multi-line comments.
811+
The line of the blob to which the thread refers, required for line-level
812+
threads. The end of the line range for multi-line comments.
812813
"""
813-
line: Int!
814+
line: Int
814815

815816
"""
816817
Path to the file being commented on.

src/graphql/data/dotcom/changelog.json

+13
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>Input field <code>AddPullRequestReviewThreadInput.line</code> changed type from <code>Int!</code> to <code>Int</code></p>"
8+
]
9+
}
10+
],
11+
"previewChanges": [],
12+
"upcomingChanges": [],
13+
"date": "2023-04-04"
14+
},
215
{
316
"schemaChanges": [
417
{

src/graphql/data/dotcom/schema.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -83846,8 +83846,8 @@
8384683846
},
8384783847
{
8384883848
"name": "line",
83849-
"description": "<p>The line of the blob to which the thread refers. The end of the line range for multi-line comments.</p>",
83850-
"type": "Int!",
83849+
"description": "<p>The line of the blob to which the thread refers, required for line-level\nthreads. The end of the line range for multi-line comments.</p>",
83850+
"type": "Int",
8385183851
"id": "int",
8385283852
"kind": "scalars",
8385383853
"href": "/graphql/reference/scalars#int"

src/graphql/data/ghae/schema.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -68934,8 +68934,8 @@
6893468934
},
6893568935
{
6893668936
"name": "line",
68937-
"description": "<p>The line of the blob to which the thread refers. The end of the line range for multi-line comments.</p>",
68938-
"type": "Int!",
68937+
"description": "<p>The line of the blob to which the thread refers, required for line-level\nthreads. The end of the line range for multi-line comments.</p>",
68938+
"type": "Int",
6893968939
"id": "int",
6894068940
"kind": "scalars",
6894168941
"href": "/graphql/reference/scalars#int"

src/graphql/data/ghec/schema.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -83846,8 +83846,8 @@
8384683846
},
8384783847
{
8384883848
"name": "line",
83849-
"description": "<p>The line of the blob to which the thread refers. The end of the line range for multi-line comments.</p>",
83850-
"type": "Int!",
83849+
"description": "<p>The line of the blob to which the thread refers, required for line-level\nthreads. The end of the line range for multi-line comments.</p>",
83850+
"type": "Int",
8385183851
"id": "int",
8385283852
"kind": "scalars",
8385383853
"href": "/graphql/reference/scalars#int"

0 commit comments

Comments
 (0)