Skip to content

Commit 46bb27d

Browse files
authored
Merge pull request #46031 from github/repo-sync
Repo sync
2 parents cde218e + 771bb5b commit 46bb27d

30 files changed

Lines changed: 296 additions & 361 deletions

File tree

‎.github/ISSUE_TEMPLATE/improve-existing-docs.yaml‎

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,10 +6,9 @@ body:
66
- type: markdown
77
attributes:
88
value: |
9-
**HUBBERS!!** This is the github/docs open source repo. You may want to open an issue in the internal-only github/docs-content repo instead.
10-
119
* Before you file an issue read the [Contributing guide](https://docs.github.com/en/contributing).
1210
* Check to make sure someone hasn't already opened a similar [issue](https://github.com/github/docs/issues).
11+
* If your issue relates to API endpoint reference content under https://docs.github.com/rest, please raise it against https://github.com/github/rest-api-description.
1312
1413
- type: checkboxes
1514
id: terms

‎.github/workflows/check-for-spammy-issues.yml‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ jobs:
7070
owner: owner,
7171
repo: repo,
7272
issue_number: issue.number,
73-
body: `This issue may have been opened accidentally. I'm going to close it now, but feel free to open a new issue with a more descriptive title!`
73+
body: `This issue may have been opened accidentally. I'm going to close it now, but feel free to open a new issue with a more descriptive title! Make sure not to include full URLs in your issue titles, and use paths instead.`
7474
});
7575
7676
// Add the issue to the Done column on the triage board

‎.github/workflows/check-for-spammy-prs.yml‎

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,9 @@ jobs:
4949
return changedLines.length > 0 &&
5050
changedLines.every(line => line.slice(1).trim() === '')
5151
})
52-
const onlyRenames = files.length > 0 && files.every(f => f.status === 'renamed')
52+
const onlyRenames = files.length > 0 && files.every(
53+
f => f.status === 'renamed' && f.additions === 0 && f.deletions === 0
54+
)
5355
5456
if (
5557
targetsNonMain ||

‎content/copilot/concepts/agents/cloud-agent/agent-management.md‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ From the Agents tab, you can:
4444
{% data reusables.copilot.cloud-agent.use-latest-vscode %}
4545
* **Review and merge agent code**: Once the agent completes a session, you can jump to the pull request to review the changes, request further improvements, or approve and merge. See [AUTOTITLE](/copilot/how-tos/copilot-on-github/use-copilot-agents/review-copilot-output).
4646
* **Set up {% data variables.copilot.copilot_automations %}**: Run {% data variables.copilot.copilot_cloud_agent %} automatically, on a schedule or in response to events such as an issue being opened. See [AUTOTITLE](/copilot/concepts/agents/cloud-agent/about-automations).
47-
* **Query your past sessions**: You can search and reference your past agent sessions using natural language from {% data variables.copilot.copilot_cli_short %} or {% data variables.product.prodname_vscode_shortname %}. See [AUTOTITLE](/copilot/concepts/agents/copilot-cli/chronicle).
47+
* **Query your past sessions**: You can search and reference your past agent sessions using natural language from {% data variables.copilot.copilot_cli_short %} or {% data variables.product.prodname_vscode_shortname %}. See [AUTOTITLE](/copilot/concepts/security-governance-and-network-settings/session-data).
4848

4949
## Next steps
5050

‎content/copilot/concepts/agents/cloud-agent/index.md‎

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,6 @@ children:
1212
- /about-automations
1313
- /about-automation-rationale-and-approvals
1414
- /mcp-and-cloud-agent
15-
- /risks-and-mitigations
1615
contentType: concepts
1716
redirect_from:
1817
- /copilot/concepts/agents/coding-agent

‎content/copilot/concepts/agents/copilot-cli/chronicle.md‎

Lines changed: 0 additions & 118 deletions
This file was deleted.

‎content/copilot/concepts/agents/copilot-cli/index.md‎

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,6 @@ children:
1616
- /autopilot
1717
- /fleet
1818
- /research
19-
- /chronicle
2019
- /rubber-duck
2120
- /lsp-servers
2221
- /about-cli-extensions

‎content/copilot/concepts/context/index.md‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,6 @@ children:
99
- /mcp
1010
- /spaces
1111
- /repository-indexing
12-
- /content-exclusion
1312
contentType: concepts
1413
---
14+

‎content/copilot/concepts/index.md‎

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,14 +8,12 @@ children:
88
- /completions
99
- /chat
1010
- /agents
11-
- /about-cloud-and-local-sandboxes
1211
- /prompting
1312
- /context
1413
- /tools
1514
- /models
1615
- /billing-and-usage
17-
- /network-settings
16+
- /security-governance-and-network-settings
1817
- /enterprise
1918
contentType: concepts
2019
---
21-

content/copilot/concepts/about-cloud-and-local-sandboxes.md renamed to content/copilot/concepts/security-governance-and-network-settings/about-cloud-and-local-sandboxes.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ versions:
77
feature: copilot
88
redirect_from:
99
- /copilot/concepts/about-github-sandbox
10+
- /copilot/concepts/about-cloud-and-local-sandboxes
1011
contentType: concepts
1112
category:
1213
- Learn about Copilot

0 commit comments

Comments
 (0)