Skip to content

Commit d6a5b0a

Browse files
authored
Merge pull request #44127 from github/repo-sync
Repo sync
2 parents 65f2d39 + ba8bfa6 commit d6a5b0a

2 files changed

Lines changed: 22 additions & 2 deletions

File tree

.github/workflows/link-check-internal.yml

Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -154,13 +154,20 @@ jobs:
154154
tableRows,
155155
].join('\n')
156156
157-
const issue = await github.rest.issues.create({
157+
// Use the REST API with agent_assignment to properly trigger Copilot cloud agent.
158+
// See: https://docs.github.com/en/copilot/how-tos/use-copilot-agents/cloud-agent/start-copilot-sessions#using-the-rest-api
159+
const issue = await github.request('POST /repos/{owner}/{repo}/issues', {
158160
owner: 'github',
159161
repo: 'docs-content',
160162
title: '[Copilot Task] Fix top redirect links: ${{ matrix.version }}/${{ matrix.language }}',
161163
body,
162164
labels: ['broken link report'],
163-
assignees: ['copilot'],
165+
assignees: ['copilot-swe-agent[bot]'],
166+
agent_assignment: {
167+
target_repo: 'github/docs-internal',
168+
base_branch: 'main',
169+
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.',
170+
},
164171
})
165172
166173
core.info(`Created Copilot redirect issue: ${issue.data.html_url}`)

content/billing/reference/supported-payment-methods.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,19 @@ Accounts with volume licenses and metered billing can use multiple payment metho
3131

3232
{% 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.
3333

34+
## Unsupported Azure subscription types
35+
36+
The following Azure subscription types cannot be used as a payment method for {% data variables.product.github %}:
37+
38+
| Quota ID | Offer number(s) |
39+
|---|---|
40+
| `FreeTrial_2014-09-01` | MS-AZR-0044P |
41+
| `AzureForStudents_2018-01-01` | MS-AZR-0170P |
42+
| `DreamSpark_2015-02-01` | MS-AZR-0144P |
43+
| `AzurePass_2014-09-01` | MS-AZR-0120P, MS-AZR-0122P–MS-AZR-0125P, MS-AZR-0128P–MS-AZR-0130P |
44+
| `PayAsYouGo_2014-09-01` | MS-AZR-0017G |
45+
| `Sponsored_2016-01-01` | MS-AZR-0036P |
46+
3447
{% ifversion fpt or ghec %}
3548

3649
## Usage-based billing availability

0 commit comments

Comments
 (0)