Skip to content

Commit ff77c49

Browse files
authored
Merge pull request #37986 from github/repo-sync
Repo sync
2 parents dd1d078 + d0e322f commit ff77c49

File tree

6 files changed

+19
-6
lines changed

6 files changed

+19
-6
lines changed

content/get-started/learning-to-code/learning-to-debug-with-github-copilot.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ Unfortunately, we get some error text in our terminal ending with the following
6969

7070
#### Debugging the file
7171

72-
To understand what this error means, press <kbd>Ctrl</kbd>+<kbd>Alt</kbd>+<kbd>I</kbd> (Windows/Linux) or <kbd>Command</kbd>+<kbd>Shift</kbd>+<kbd>I</kbd> (Mac) to **open {% data variables.product.prodname_copilot_chat_short %}**, then paste and send the following prompt:
72+
To understand what this error means, [open {% data variables.product.prodname_copilot_chat_short %} in {% data variables.product.prodname_vscode_shortname %}](vscode://GitHub.Copilot-Chat), then paste and send the following prompt: <!-- markdownlint-disable-line GHD003 -->
7373

7474
```text copy
7575
Explain in depth why my code produces the following error and how I can fix it:
@@ -111,7 +111,7 @@ Unfortunately, the code isn't working as expected. We want it to return `720`, t
111111
112112
#### Debugging the file
113113
114-
To understand what went wrong, open {% data variables.product.prodname_copilot_chat_short %} and send the following prompt:
114+
To understand what went wrong, [open {% data variables.product.prodname_copilot_chat_short %}](vscode://GitHub.Copilot-Chat) and send the following prompt: <!-- markdownlint-disable-line GHD003 -->
115115
116116
```text copy
117117
Why is the output of this code so much higher than expected? Please explain in depth and suggest a solution.

src/graphql/data/fpt/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>Input field <code>AddPullRequestReviewThreadInput.path</code> changed type from <code>String!</code> to <code>String</code></p>"
8+
]
9+
}
10+
],
11+
"previewChanges": [],
12+
"upcomingChanges": [],
13+
"date": "2025-05-01"
14+
},
215
{
316
"schemaChanges": [
417
{

src/graphql/data/fpt/schema.docs.graphql

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -965,7 +965,7 @@ input AddPullRequestReviewThreadInput {
965965
"""
966966
Path to the file being commented on.
967967
"""
968-
path: String!
968+
path: String
969969

970970
"""
971971
The node ID of the pull request reviewing

src/graphql/data/fpt/schema.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -97503,7 +97503,7 @@
9750397503
{
9750497504
"name": "path",
9750597505
"description": "<p>Path to the file being commented on.</p>",
97506-
"type": "String!",
97506+
"type": "String",
9750797507
"id": "string",
9750897508
"kind": "scalars",
9750997509
"href": "/graphql/reference/scalars#string"

src/graphql/data/ghec/schema.docs.graphql

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -965,7 +965,7 @@ input AddPullRequestReviewThreadInput {
965965
"""
966966
Path to the file being commented on.
967967
"""
968-
path: String!
968+
path: String
969969

970970
"""
971971
The node ID of the pull request reviewing

src/graphql/data/ghec/schema.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -97503,7 +97503,7 @@
9750397503
{
9750497504
"name": "path",
9750597505
"description": "<p>Path to the file being commented on.</p>",
97506-
"type": "String!",
97506+
"type": "String",
9750797507
"id": "string",
9750897508
"kind": "scalars",
9750997509
"href": "/graphql/reference/scalars#string"

0 commit comments

Comments
 (0)