Skip to content

Commit

Permalink
Merge pull request #24871 from github/repo-sync
Browse files Browse the repository at this point in the history
repo sync
  • Loading branch information
Octomerger authored Apr 4, 2023
2 parents a1f5153 + cea8fcb commit f708d4a
Show file tree
Hide file tree
Showing 7 changed files with 28 additions and 12 deletions.
5 changes: 3 additions & 2 deletions data/graphql/ghae/schema.docs-ghae.graphql
Original file line number Diff line number Diff line change
Expand Up @@ -641,9 +641,10 @@ input AddPullRequestReviewThreadInput {
clientMutationId: String

"""
The line of the blob to which the thread refers. The end of the line range for multi-line comments.
The line of the blob to which the thread refers, required for line-level
threads. The end of the line range for multi-line comments.
"""
line: Int!
line: Int

"""
Path to the file being commented on.
Expand Down
5 changes: 3 additions & 2 deletions data/graphql/ghec/schema.docs.graphql
Original file line number Diff line number Diff line change
Expand Up @@ -808,9 +808,10 @@ input AddPullRequestReviewThreadInput {
clientMutationId: String

"""
The line of the blob to which the thread refers. The end of the line range for multi-line comments.
The line of the blob to which the thread refers, required for line-level
threads. The end of the line range for multi-line comments.
"""
line: Int!
line: Int

"""
Path to the file being commented on.
Expand Down
5 changes: 3 additions & 2 deletions data/graphql/schema.docs.graphql
Original file line number Diff line number Diff line change
Expand Up @@ -808,9 +808,10 @@ input AddPullRequestReviewThreadInput {
clientMutationId: String

"""
The line of the blob to which the thread refers. The end of the line range for multi-line comments.
The line of the blob to which the thread refers, required for line-level
threads. The end of the line range for multi-line comments.
"""
line: Int!
line: Int

"""
Path to the file being commented on.
Expand Down
13 changes: 13 additions & 0 deletions src/graphql/data/dotcom/changelog.json
Original file line number Diff line number Diff line change
@@ -1,4 +1,17 @@
[
{
"schemaChanges": [
{
"title": "The GraphQL schema includes these changes:",
"changes": [
"<p>Input field <code>AddPullRequestReviewThreadInput.line</code> changed type from <code>Int!</code> to <code>Int</code></p>"
]
}
],
"previewChanges": [],
"upcomingChanges": [],
"date": "2023-04-04"
},
{
"schemaChanges": [
{
Expand Down
4 changes: 2 additions & 2 deletions src/graphql/data/dotcom/schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -83846,8 +83846,8 @@
},
{
"name": "line",
"description": "<p>The line of the blob to which the thread refers. The end of the line range for multi-line comments.</p>",
"type": "Int!",
"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>",
"type": "Int",
"id": "int",
"kind": "scalars",
"href": "/graphql/reference/scalars#int"
Expand Down
4 changes: 2 additions & 2 deletions src/graphql/data/ghae/schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -68934,8 +68934,8 @@
},
{
"name": "line",
"description": "<p>The line of the blob to which the thread refers. The end of the line range for multi-line comments.</p>",
"type": "Int!",
"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>",
"type": "Int",
"id": "int",
"kind": "scalars",
"href": "/graphql/reference/scalars#int"
Expand Down
4 changes: 2 additions & 2 deletions src/graphql/data/ghec/schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -83846,8 +83846,8 @@
},
{
"name": "line",
"description": "<p>The line of the blob to which the thread refers. The end of the line range for multi-line comments.</p>",
"type": "Int!",
"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>",
"type": "Int",
"id": "int",
"kind": "scalars",
"href": "/graphql/reference/scalars#int"
Expand Down

0 comments on commit f708d4a

Please sign in to comment.