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
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,15 @@ category:
---
You can deploy {% data variables.product.prodname_ghe_server %} on global Azure or Azure Government.

{% ifversion ghes = 3.20 %}
## Azure Local

> [!NOTE] {% data variables.product.prodname_ghe_server %} on Azure Local is now in public preview. During this public preview, you can only use GHES version 3.20.
If your organization requires sovereign deployments or operates in regulated environments, Azure Local is Microsoft's distributed infrastructure solution that enables this. Supporting regulated deployments, you can now host {% data variables.product.prodname_ghe_server %} on Azure Local. For more information, see [GitHub Enterprise Local](https://learn.microsoft.com/en-us/azure/azure-sovereign-clouds/private/github-local/github-local-overview).

{% endif %}

## Prerequisites

* {% data reusables.enterprise_installation.software-license %}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ For a conceptual overview of the {% data variables.copilot.github_copilot_app %}
* **{% data variables.copilot.copilot_business_short %} or {% data variables.copilot.copilot_enterprise_short %} users**: You have access, as long as your organization or enterprise has enabled preview features and enabled {% data variables.copilot.copilot_cli_short %}. You can download the app directly from the [{% data variables.copilot.github_copilot_app %} repository](https://gh.io/github-copilot-app-repo?utm_source=docs-github-copilot-app-get-started&utm_medium=docs&utm_campaign=msbuild-2026).
* **{% data variables.copilot.copilot_pro_short %} or {% data variables.copilot.copilot_pro_plus_short %} users**: You have access and can download the app directly from the [{% data variables.copilot.github_copilot_app %} repository](https://gh.io/github-copilot-app-repo?utm_source=docs-github-copilot-app-get-started&utm_medium=docs&utm_campaign=msbuild-2026).
* **{% data variables.copilot.copilot_free_short %} users and users without a {% data variables.product.prodname_copilot_short %} plan**: Join the [waitlist](https://gh.io/github-copilot-app?utm_source=docs-github-copilot-app-get-started&utm_medium=docs&utm_campaign=msbuild-2026) to request access.
* The {% data variables.copilot.github_copilot_app %} installed on macOS, Windows, or Linux. Once you have access, you can download and install the application from the [{% data variables.copilot.github_copilot_app %} repository](https://github.com/github/app#install?utm_source=docs-github-copilot-app-get-started-install&utm_medium=docs&utm_campaign=msbuild-2026).
* The {% data variables.copilot.github_copilot_app %} installed on macOS, Windows, or Linux. Once you have access, you can download and install the application from the [{% data variables.copilot.github_copilot_app %} repository](https://github.com/github/app?utm_source=docs-github-copilot-app-get-started-install&utm_medium=docs&utm_campaign=msbuild-2026#install).

## Opening the {% data variables.copilot.github_copilot_app %} for the first time

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -71,6 +71,14 @@ Anthropic models include a cache write cost in addition to cached input.

[^7]: {% data variables.copilot.copilot_raptor_mini %} uses {% data variables.copilot.copilot_gpt_5_mini %} pricing.

### Microsoft

| Model | Release status | Category | Input | Cached input | Output |
| --- | --- | --- | ---: | ---: | ---: |
| {% for entry in tables.copilot.models-and-pricing %}{% if entry.provider == "microsoft" %} |
| {{ entry.model }} | {{ entry.release_status }} | {{ entry.category }} | {{ entry.input }} | {{ entry.cached_input }} | {{ entry.output }} |
| {% endif %}{% endfor %} |

## Code completions

{% data reusables.copilot.tbb-completions %}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ const modelsAndPricingSchema = {
},
provider: {
type: 'string',
enum: ['openai', 'anthropic', 'google', 'xai', 'github'],
enum: ['openai', 'anthropic', 'google', 'microsoft', 'xai', 'github'],
},
release_status: {
type: 'string',
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -126,6 +126,15 @@
"additional-permissions": false,
"access": "write"
},
{
"category": "billing",
"slug": "get-billing-ai-credit-usage-report-for-an-organization",
"subcategory": "usage",
"verb": "get",
"requestPath": "/organizations/{org}/settings/billing/ai_credit/usage",
"additional-permissions": false,
"access": "read"
},
{
"category": "billing",
"slug": "get-all-budgets-for-an-organization",
Expand Down Expand Up @@ -9219,6 +9228,15 @@
"title": "Plan",
"displayTitle": "User permissions for \"Plan\"",
"permissions": [
{
"category": "billing",
"slug": "get-billing-ai-credit-usage-report-for-a-user",
"subcategory": "usage",
"verb": "get",
"requestPath": "/users/{username}/settings/billing/ai_credit/usage",
"additional-permissions": false,
"access": "read"
},
{
"category": "billing",
"slug": "get-billing-premium-request-usage-report-for-a-user",
Expand Down
12 changes: 12 additions & 0 deletions src/github-apps/data/fpt-2022-11-28/fine-grained-pat.json
Original file line number Diff line number Diff line change
Expand Up @@ -1374,6 +1374,12 @@
}
],
"billing": [
{
"slug": "get-billing-ai-credit-usage-report-for-an-organization",
"subcategory": "usage",
"verb": "get",
"requestPath": "/organizations/{org}/settings/billing/ai_credit/usage"
},
{
"slug": "get-all-budgets-for-an-organization",
"subcategory": "budgets",
Expand Down Expand Up @@ -1416,6 +1422,12 @@
"verb": "get",
"requestPath": "/organizations/{org}/settings/billing/usage/summary"
},
{
"slug": "get-billing-ai-credit-usage-report-for-a-user",
"subcategory": "usage",
"verb": "get",
"requestPath": "/users/{username}/settings/billing/ai_credit/usage"
},
{
"slug": "get-billing-premium-request-usage-report-for-a-user",
"subcategory": "usage",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -406,6 +406,17 @@
"server-to-server": true,
"additional-permissions": false
},
{
"category": "billing",
"slug": "get-billing-ai-credit-usage-report-for-an-organization",
"subcategory": "usage",
"verb": "get",
"requestPath": "/organizations/{org}/settings/billing/ai_credit/usage",
"access": "read",
"user-to-server": true,
"server-to-server": true,
"additional-permissions": false
},
{
"category": "billing",
"slug": "get-all-budgets-for-an-organization",
Expand Down Expand Up @@ -11715,6 +11726,17 @@
"title": "Plan",
"displayTitle": "User permissions for \"Plan\"",
"permissions": [
{
"category": "billing",
"slug": "get-billing-ai-credit-usage-report-for-a-user",
"subcategory": "usage",
"verb": "get",
"requestPath": "/users/{username}/settings/billing/ai_credit/usage",
"access": "read",
"user-to-server": true,
"server-to-server": false,
"additional-permissions": false
},
{
"category": "billing",
"slug": "get-billing-premium-request-usage-report-for-a-user",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -1454,6 +1454,12 @@
}
],
"billing": [
{
"slug": "get-billing-ai-credit-usage-report-for-an-organization",
"subcategory": "usage",
"verb": "get",
"requestPath": "/organizations/{org}/settings/billing/ai_credit/usage"
},
{
"slug": "get-all-budgets-for-an-organization",
"subcategory": "budgets",
Expand Down
12 changes: 12 additions & 0 deletions src/github-apps/data/fpt-2022-11-28/user-to-server-rest.json
Original file line number Diff line number Diff line change
Expand Up @@ -1496,6 +1496,12 @@
}
],
"billing": [
{
"slug": "get-billing-ai-credit-usage-report-for-an-organization",
"subcategory": "usage",
"verb": "get",
"requestPath": "/organizations/{org}/settings/billing/ai_credit/usage"
},
{
"slug": "get-all-budgets-for-an-organization",
"subcategory": "budgets",
Expand Down Expand Up @@ -1538,6 +1544,12 @@
"verb": "get",
"requestPath": "/organizations/{org}/settings/billing/usage/summary"
},
{
"slug": "get-billing-ai-credit-usage-report-for-a-user",
"subcategory": "usage",
"verb": "get",
"requestPath": "/users/{username}/settings/billing/ai_credit/usage"
},
{
"slug": "get-billing-premium-request-usage-report-for-a-user",
"subcategory": "usage",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -126,6 +126,15 @@
"additional-permissions": false,
"access": "write"
},
{
"category": "billing",
"slug": "get-billing-ai-credit-usage-report-for-an-organization",
"subcategory": "usage",
"verb": "get",
"requestPath": "/organizations/{org}/settings/billing/ai_credit/usage",
"additional-permissions": false,
"access": "read"
},
{
"category": "billing",
"slug": "get-all-budgets-for-an-organization",
Expand Down Expand Up @@ -9219,6 +9228,15 @@
"title": "Plan",
"displayTitle": "User permissions for \"Plan\"",
"permissions": [
{
"category": "billing",
"slug": "get-billing-ai-credit-usage-report-for-a-user",
"subcategory": "usage",
"verb": "get",
"requestPath": "/users/{username}/settings/billing/ai_credit/usage",
"additional-permissions": false,
"access": "read"
},
{
"category": "billing",
"slug": "get-billing-premium-request-usage-report-for-a-user",
Expand Down
12 changes: 12 additions & 0 deletions src/github-apps/data/fpt-2026-03-10/fine-grained-pat.json
Original file line number Diff line number Diff line change
Expand Up @@ -1374,6 +1374,12 @@
}
],
"billing": [
{
"slug": "get-billing-ai-credit-usage-report-for-an-organization",
"subcategory": "usage",
"verb": "get",
"requestPath": "/organizations/{org}/settings/billing/ai_credit/usage"
},
{
"slug": "get-all-budgets-for-an-organization",
"subcategory": "budgets",
Expand Down Expand Up @@ -1416,6 +1422,12 @@
"verb": "get",
"requestPath": "/organizations/{org}/settings/billing/usage/summary"
},
{
"slug": "get-billing-ai-credit-usage-report-for-a-user",
"subcategory": "usage",
"verb": "get",
"requestPath": "/users/{username}/settings/billing/ai_credit/usage"
},
{
"slug": "get-billing-premium-request-usage-report-for-a-user",
"subcategory": "usage",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -406,6 +406,17 @@
"server-to-server": true,
"additional-permissions": false
},
{
"category": "billing",
"slug": "get-billing-ai-credit-usage-report-for-an-organization",
"subcategory": "usage",
"verb": "get",
"requestPath": "/organizations/{org}/settings/billing/ai_credit/usage",
"access": "read",
"user-to-server": true,
"server-to-server": true,
"additional-permissions": false
},
{
"category": "billing",
"slug": "get-all-budgets-for-an-organization",
Expand Down Expand Up @@ -11715,6 +11726,17 @@
"title": "Plan",
"displayTitle": "User permissions for \"Plan\"",
"permissions": [
{
"category": "billing",
"slug": "get-billing-ai-credit-usage-report-for-a-user",
"subcategory": "usage",
"verb": "get",
"requestPath": "/users/{username}/settings/billing/ai_credit/usage",
"access": "read",
"user-to-server": true,
"server-to-server": false,
"additional-permissions": false
},
{
"category": "billing",
"slug": "get-billing-premium-request-usage-report-for-a-user",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -1454,6 +1454,12 @@
}
],
"billing": [
{
"slug": "get-billing-ai-credit-usage-report-for-an-organization",
"subcategory": "usage",
"verb": "get",
"requestPath": "/organizations/{org}/settings/billing/ai_credit/usage"
},
{
"slug": "get-all-budgets-for-an-organization",
"subcategory": "budgets",
Expand Down
12 changes: 12 additions & 0 deletions src/github-apps/data/fpt-2026-03-10/user-to-server-rest.json
Original file line number Diff line number Diff line change
Expand Up @@ -1496,6 +1496,12 @@
}
],
"billing": [
{
"slug": "get-billing-ai-credit-usage-report-for-an-organization",
"subcategory": "usage",
"verb": "get",
"requestPath": "/organizations/{org}/settings/billing/ai_credit/usage"
},
{
"slug": "get-all-budgets-for-an-organization",
"subcategory": "budgets",
Expand Down Expand Up @@ -1538,6 +1544,12 @@
"verb": "get",
"requestPath": "/organizations/{org}/settings/billing/usage/summary"
},
{
"slug": "get-billing-ai-credit-usage-report-for-a-user",
"subcategory": "usage",
"verb": "get",
"requestPath": "/users/{username}/settings/billing/ai_credit/usage"
},
{
"slug": "get-billing-premium-request-usage-report-for-a-user",
"subcategory": "usage",
Expand Down
2 changes: 1 addition & 1 deletion src/github-apps/lib/config.json
Original file line number Diff line number Diff line change
Expand Up @@ -60,5 +60,5 @@
"2022-11-28"
]
},
"sha": "9be34b1f355a4330ec7c04381dd081e4865ac820"
"sha": "c4a52d9b0b4f5db4e7de178c9f8f90b5f6360563"
}
Loading
Loading