Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,14 @@

**11 September 2025**

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.

See [Changing the AI model for GitHub Copilot Chat](https://docs.github.com/en/copilot/how-tos/use-ai-models/change-the-chat-model?tool=vscode).

<hr>

**11 September 2025**

You can now enable automatic Copilot code review with its own standalone repository rule. We've updated the documentation accordingly.

See [Configuring automatic code review by GitHub Copilot](https://docs.github.com/copilot/how-tos/use-copilot-agents/request-a-code-review/configure-automatic-review).
Expand Down
7 changes: 7 additions & 0 deletions content/billing/concepts/cost-centers.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,3 +23,10 @@ To get started with cost centers, see [AUTOTITLE](/billing/tutorials/use-cost-ce
{% data reusables.billing.cost-center-allocation %}

For more details, see [AUTOTITLE](/billing/reference/cost-center-allocation).

## Cost center limitations

* The maximum number of active cost centers per enterprise is 250.
* The maximum number of resources per cost center is 10,000.
* A maximum of 50 resources can be added to or removed from a cost center at a time.
* Azure subscriptions can only be added to or removed from cost centers through the UI.
8 changes: 0 additions & 8 deletions content/billing/tutorials/use-cost-centers.md
Original file line number Diff line number Diff line change
Expand Up @@ -57,14 +57,6 @@ You can view, edit, and delete cost centers to manage your business units effect
1. Select {% octicon "kebab-horizontal" aria-label="Cost center dropdown" %} to the right of a cost center, then click **View details**, **Edit**, or **Delete**.
1. Follow the prompts.

## Limitations of the cost center API

There are a few current limitations when working with cost centers and the API:

* There is a maximum of 250 cost centers per enterprise.
* You can add or remove up to 50 resources at a time from a cost center using the API.
* Azure subscriptions can only be added to or removed from cost centers through the UI.

## Further reading

* [AUTOTITLE](/rest/enterprise-admin/billing)
9 changes: 7 additions & 2 deletions data/reusables/enterprise-accounts/dormant-user-activity.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@ A user is considered active if the user has performed any of the following activ

* {% ifversion ghec %}Authenticating to access your enterprise's resources via SAML SSO{% else %}Signing into {% data variables.location.product_location %} {% endif %}
* Creating a repository
* Pushing to a repository via HTTPS{% ifversion ghes %}
* Pushing to a repository via SSH{% endif %}
* Pushing to an internal repository via HTTPS{% ifversion ghes %}
* Pushing to an internal repository via SSH{% endif %}
* Being added to a repository
* Changing the visibility of a repository
* Creating an issue or pull request
Expand All @@ -23,6 +23,11 @@ A user is considered active if the user has performed any of the following activ
* Deleting a repository
* Joining an organization

{% data variables.product.github %} **does not consider the following activities as active**:

* Accessing resources by using a {% data variables.product.pat_generic %}, SSH key, or {% data variables.product.prodname_github_app %}.
* Git operations (such as pushes, pulls, repository cloning) on private repositories.

{% ifversion ghes %}
A user will also be considered active if their account has been updated by LDAP.
{% endif %}
13 changes: 13 additions & 0 deletions src/graphql/data/fpt/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>Enum value <code>EXEMPT</code> was added to enum <code>RepositoryRulesetBypassActorBypassMode</code></p>"
]
}
],
"previewChanges": [],
"upcomingChanges": [],
"date": "2025-09-12"
},
{
"schemaChanges": [
{
Expand Down
7 changes: 6 additions & 1 deletion src/graphql/data/fpt/schema.docs.graphql
Original file line number Diff line number Diff line change
Expand Up @@ -11948,7 +11948,7 @@ type Discussion implements Closable & Comment & Deletable & Labelable & Lockable
answerChosenBy: Actor

"""
The actor who authored the comment.
The actor who authored the discussion.
"""
author: Actor

Expand Down Expand Up @@ -53198,6 +53198,11 @@ enum RepositoryRulesetBypassActorBypassMode {
"""
ALWAYS

"""
The actor is exempt from rules without generating a pass / fail result
"""
EXEMPT

"""
The actor can only bypass rules via a pull request
"""
Expand Down
6 changes: 5 additions & 1 deletion src/graphql/data/fpt/schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -20141,7 +20141,7 @@
},
{
"name": "author",
"description": "<p>The actor who authored the comment.</p>",
"description": "<p>The actor who authored the discussion.</p>",
"type": "Actor",
"id": "actor",
"kind": "interfaces",
Expand Down Expand Up @@ -92990,6 +92990,10 @@
"name": "ALWAYS",
"description": "<p>The actor can always bypass rules.</p>"
},
{
"name": "EXEMPT",
"description": "<p>The actor is exempt from rules without generating a pass / fail result.</p>"
},
{
"name": "PULL_REQUEST",
"description": "<p>The actor can only bypass rules via a pull request.</p>"
Expand Down
7 changes: 6 additions & 1 deletion src/graphql/data/ghec/schema.docs.graphql
Original file line number Diff line number Diff line change
Expand Up @@ -11948,7 +11948,7 @@ type Discussion implements Closable & Comment & Deletable & Labelable & Lockable
answerChosenBy: Actor

"""
The actor who authored the comment.
The actor who authored the discussion.
"""
author: Actor

Expand Down Expand Up @@ -53198,6 +53198,11 @@ enum RepositoryRulesetBypassActorBypassMode {
"""
ALWAYS

"""
The actor is exempt from rules without generating a pass / fail result
"""
EXEMPT

"""
The actor can only bypass rules via a pull request
"""
Expand Down
6 changes: 5 additions & 1 deletion src/graphql/data/ghec/schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -20141,7 +20141,7 @@
},
{
"name": "author",
"description": "<p>The actor who authored the comment.</p>",
"description": "<p>The actor who authored the discussion.</p>",
"type": "Actor",
"id": "actor",
"kind": "interfaces",
Expand Down Expand Up @@ -92990,6 +92990,10 @@
"name": "ALWAYS",
"description": "<p>The actor can always bypass rules.</p>"
},
{
"name": "EXEMPT",
"description": "<p>The actor is exempt from rules without generating a pass / fail result.</p>"
},
{
"name": "PULL_REQUEST",
"description": "<p>The actor can only bypass rules via a pull request.</p>"
Expand Down
Loading