Skip to content

Commit 0dd99c3

Browse files
author
Unkown Inkwn
authored
Merge branch 'github:main' into main
2 parents 0e0d3fc + 421382a commit 0dd99c3

218 files changed

Lines changed: 95756 additions & 6374 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.devcontainer/devcontainer.json

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -59,11 +59,13 @@
5959
},
6060

6161
// Lifecycle commands
62-
"onCreateCommand": "npm ci",
62+
// Install dependencies then install Copilot CLI
63+
"onCreateCommand": "npm ci && npm config set \"//npm.pkg.github.com/:_authToken=$GITHUB_TOKEN\" && npm config set \"@github:registry=https://npm.pkg.github.com/\" && npm install -g @github/copilot",
64+
// Start a web server and keep it running
6365
"postStartCommand": "nohup bash -c 'npm start &'",
64-
// Set the port to be public
66+
// Set port 4000 to be public
6567
"postAttachCommand": "gh cs ports visibility 4000:public -c \"$CODESPACE_NAME\"",
66-
68+
6769
// Comment out connect as root instead. More info: https://aka.ms/vscode-remote/containers/non-root.
6870
"remoteUser": "node",
6971

.gitignore

Lines changed: 4 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -37,9 +37,6 @@
3737
# TypeScript incremental build info
3838
*.tsbuildinfo
3939

40-
# Early access images from docs-early-access repo
41-
assets/images/early-access/
42-
4340
# Accidentally committed file that should be ignored
4441
assets/images/help/writing/unordered-list-rendered (1).png
4542

@@ -52,15 +49,14 @@ blc_output_internal.log
5249
# Old broken links report
5350
broken_links.md
5451

55-
# Early access content from docs-early-access repo
56-
content/early-access/
52+
# Directories from the docs-early-access repo. Used for symlinks in local docs-internal checkouts. Don't add trailing slashes.
53+
content/early-access
54+
data/early-access
55+
assets/images/early-access
5756

5857
# Test coverage reports
5958
coverage/
6059

61-
# Early access data from docs-early-access repo
62-
data/early-access/
63-
6460
# Cloned for Elasticsearch indexing data
6561
docs-internal-data/
6662

CHANGELOG.md

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,33 @@
11
# Docs changelog
22

3+
**17 September 2025**
4+
5+
We added documentation for expanded features for reusing workflow configurations in GitHub Actions.
6+
7+
You can now use YAML anchors and aliases to reuse pieces of content in a workflow. See [YAML anchors and aliases](https://docs.github.com/en/actions/concepts/workflows-and-actions/reusing-workflow-configurations#yaml-anchors-and-aliases).
8+
9+
To keep the content focused on users' job-to-be-done, we simplified the procedures for [creating workflow templates for your organization](https://docs.github.com/en/actions/how-tos/reuse-automations/create-workflow-templates). In addition, we updated reference documentation for workflow templates with details on permissions, repository visibility rules, rules for the metadata file, and examples. See [Workflow templates](https://docs.github.com/en/actions/reference/workflows-and-actions/reusing-workflow-configurations#workflow-templates).
10+
11+
<hr>
12+
13+
**17 September 2025**
14+
15+
You can now publish your Spark app as "read-only."
16+
17+
By default, data stored in Spark is shared across all users of the app. You can choose to publish your app as "read-only" if you want to showcase your app to others, but you don't want others to be able to edit or delete any stored data.
18+
19+
We've updated the [Spark documentation](https://docs.github.com/en/copilot/tutorials/build-apps-with-spark) accordingly.
20+
21+
<hr>
22+
23+
**15 September 2025**
24+
25+
We've updated the documentation for Copilot code review to clarify model usage for code review.
26+
27+
See [Responsible use of GitHub Copilot code review](https://docs.github.com/copilot/responsible-use/code-review#model-usage).
28+
29+
<hr>
30+
331
**11 September 2025**
432

533
Copilot Chat in VS Code includes a "Manage models" option which allows you to add models from a variety of LLM providers, such as Azure, Anthropic, Google, and xAI. By installing the AI Toolkit for VS Code, you can install even more models from the "Manage models" option. We've updated the documentation to include details of how to use this new feature.

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
# ---------------------------------------------------------------
99
# To update the sha:
1010
# https://github.com/github/gh-base-image/pkgs/container/gh-base-image%2Fgh-base-noble
11-
FROM ghcr.io/github/gh-base-image/gh-base-noble:20250911-223345-ge6d335835 AS base
11+
FROM ghcr.io/github/gh-base-image/gh-base-noble:20250917-225833-g09a8eb42d AS base
1212

1313
# Install curl for Node install and determining the early access branch
1414
# Install git for cloning docs-early-access & translations repos
-212 KB
Binary file not shown.
-167 KB
Binary file not shown.
-196 KB
Binary file not shown.
-207 KB
Binary file not shown.
-198 KB
Binary file not shown.
-62.2 KB
Binary file not shown.

0 commit comments

Comments
 (0)