Skip to content

Commit 5674276

Browse files
Merge branch 'main' into patch-1
2 parents 208f4ba + 1db9c73 commit 5674276

File tree

836 files changed

+17757
-10124
lines changed

Some content is hidden

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

836 files changed

+17757
-10124
lines changed

.devcontainer/devcontainer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@
6363

6464
// Lifecycle commands
6565
// Start a web server and keep it running
66-
"postStartCommand": "nohup bash -c 'npm start &'",
66+
"postStartCommand": "nohup bash -c 'npm ci && npm start &'",
6767
// Set port 4000 to be public
6868
"postAttachCommand": "gh cs ports visibility 4000:public -c \"$CODESPACE_NAME\"",
6969

.github/workflows/docs-review-collect.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ jobs:
2929
cache: npm
3030

3131
- name: Install dependencies
32-
run: npm install @octokit/graphql
32+
run: npm ci
3333

3434
- name: Run script for audit-log-allowlists
3535
run: |

.github/workflows/os-ready-for-review.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ jobs:
5454
cache: npm
5555

5656
- name: Install dependencies
57-
run: npm install @octokit/graphql
57+
run: npm ci
5858

5959
- name: Run script
6060
run: |

.github/workflows/ready-for-doc-review.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ jobs:
3333
cache: npm
3434

3535
- name: Install dependencies
36-
run: npm install @octokit/graphql
36+
run: npm ci
3737

3838
- name: Set AUTHOR_LOGIN
3939
run: |

.github/workflows/test.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -163,4 +163,7 @@ jobs:
163163
ENABLED_LANGUAGES: ${{ matrix.name == 'languages' && 'all' || '' }}
164164
ROOT: ${{ (matrix.name == 'fixtures' || matrix.name == 'article-api' || matrix.name == 'landings' ) && 'src/fixtures/fixtures' || '' }}
165165
TRANSLATIONS_FIXTURE_ROOT: ${{ (matrix.name == 'fixtures' || matrix.name == 'article-api') && 'src/fixtures/fixtures/translations' || '' }}
166+
# Enable debug logging when "Re-run jobs with debug logging" is used in GitHub Actions UI
167+
# This will output additional timing and path information to help diagnose timeout issues
168+
RUNNER_DEBUG: ${{ runner.debug }}
166169
run: npm test -- src/${{ matrix.name }}/tests/

CHANGELOG.md

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

3+
**16 January 2026**
4+
5+
We published [About user offboarding on GitHub Enterprise Cloud](https://docs.github.com/en/enterprise-cloud@latest/admin/concepts/identity-and-access-management/user-offboarding) to give enterprise customers clear guidance about offboarding processes. The article covers recommended offboarding methods, the effects of offboarding, and what happens when a user is removed from all organizations in an enterprise.
6+
7+
We also updated [Removing a member from your enterprise](https://docs.github.com/en/enterprise-cloud@latest/admin/managing-accounts-and-repositories/managing-users-in-your-enterprise/removing-a-member-from-your-enterprise) and [Removing a member from your organization](https://docs.github.com/en/enterprise-cloud@latest/organizations/managing-membership-in-your-organization/removing-a-member-from-your-organization) to include instructions for enterprises that use Enterprise Managed Users or SCIM for organizations.
8+
9+
<hr>
10+
11+
**13 January 2026**
12+
13+
We've added a new reference article to clarify which of the various types of custom instructions for Copilot are supported by Copilot Chat, Copilot coding agent, and Copilot code review in GitHub.com, Visual Studio Code, Visual Studio, JetBrains IDEs, Eclipse, Xcode, and Copilot CLI.
14+
15+
[Support for different types of custom instructions](https://docs.github.com/copilot/reference/custom-instructions-support)
16+
17+
<hr>
18+
19+
**8 January 2026**
20+
21+
We've added information about permissions to the article [Using GitHub Copilot CLI](https://docs.github.com/copilot/how-tos/use-copilot-agents/use-copilot-cli#permissions).
22+
23+
<hr>
24+
325
**18 December 2025**
426

527
The documentation has been updated to reflect the general availability of direct organization billing for premium request usage in Copilot Code Review. Organization members without a Copilot plan can now use Copilot Code Review on GitHub.com, with premium request usage billed directly to their organization or enterprise. See [Copilot code review without a Copilot license](https://docs.github.com/en/copilot/concepts/agents/code-review#copilot-code-review-without-a-copilot-license).

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:20251217-105955-g05726ec4c AS base
11+
FROM ghcr.io/github/gh-base-image/gh-base-noble:20260113-125234-g605df3bee 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
325 KB
Loading

config/moda/secrets/ci/secrets.yml

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
---
2+
secrets:
3+
DOCS_BOT_PAT_BASE:
4+
key: DOCS_BOT_PAT_BASE
5+
type: github_pat
6+
owner: docs-engineering
7+
playbook: ''
8+
externally_usable: true
9+
kind: latest_at_deployment_start
Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
---
2+
secrets: {}

0 commit comments

Comments
 (0)