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
11 changes: 9 additions & 2 deletions .github/workflows/link-check-internal.yml
Original file line number Diff line number Diff line change
Expand Up @@ -154,13 +154,20 @@ jobs:
tableRows,
].join('\n')

const issue = await github.rest.issues.create({
// Use the REST API with agent_assignment to properly trigger Copilot cloud agent.
// See: https://docs.github.com/en/copilot/how-tos/use-copilot-agents/cloud-agent/start-copilot-sessions#using-the-rest-api
const issue = await github.request('POST /repos/{owner}/{repo}/issues', {
owner: 'github',
repo: 'docs-content',
title: '[Copilot Task] Fix top redirect links: ${{ matrix.version }}/${{ matrix.language }}',
body,
labels: ['broken link report'],
assignees: ['copilot'],
assignees: ['copilot-swe-agent[bot]'],
agent_assignment: {
target_repo: 'github/docs-internal',
base_branch: 'main',
custom_instructions: 'For each entry in the table, open the source file in the github/docs-internal repository and replace the Current Link with the Update To path. When all changes are made, open a pull request in github/docs-internal with the fixes.',
},
})

core.info(`Created Copilot redirect issue: ${issue.data.html_url}`)
Expand Down
13 changes: 13 additions & 0 deletions content/billing/reference/supported-payment-methods.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,19 @@ Accounts with volume licenses and metered billing can use multiple payment metho

{% data variables.product.prodname_copilot_short %} standalone accounts, which traditionally used Azure Subscription IDs, can now also pay by credit card. Contact your {% data variables.product.github %} representative for details.

## Unsupported Azure subscription types

The following Azure subscription types cannot be used as a payment method for {% data variables.product.github %}:

| Quota ID | Offer number(s) |
|---|---|
| `FreeTrial_2014-09-01` | MS-AZR-0044P |
| `AzureForStudents_2018-01-01` | MS-AZR-0170P |
| `DreamSpark_2015-02-01` | MS-AZR-0144P |
| `AzurePass_2014-09-01` | MS-AZR-0120P, MS-AZR-0122P–MS-AZR-0125P, MS-AZR-0128P–MS-AZR-0130P |
| `PayAsYouGo_2014-09-01` | MS-AZR-0017G |
| `Sponsored_2016-01-01` | MS-AZR-0036P |

{% ifversion fpt or ghec %}

## Usage-based billing availability
Expand Down
Loading