Skip to content

Commit 6ba053e

Browse files
Merge branch 'main' into fix-docs-actions-runner-typos
2 parents 0a7711a + 3a07501 commit 6ba053e

File tree

4 files changed

+13
-11
lines changed

4 files changed

+13
-11
lines changed

content/account-and-profile/managing-subscriptions-and-notifications-on-github/setting-up-notifications/configuring-notifications.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -65,6 +65,13 @@ To see repositories that you're watching, go to your [watching page](https://git
6565

6666
You can configure notifications for a repository on the repository page, or on your watching page.
6767

68+
{% ifversion fpt or ghec %}
69+
70+
> [!NOTE]
71+
> You can watch a maximum of 10,000 repositories.
72+
73+
{% endif %}
74+
6875
### About custom notifications
6976

7077
You can customize notifications for a repository. For example, you can choose to only be notified when updates to one or more types of events ({% data reusables.notifications-v2.custom-notification-types %}) happen within a repository, or ignore all notifications for a repository. For more information, see [Configuring your watch settings for an individual repository](#configuring-your-watch-settings-for-an-individual-repository) below.

content/copilot/using-github-copilot/guides-on-using-github-copilot/upgrading-java-projects-with-github-copilot.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,7 @@ Before getting started you must have the following:
3535
* Installed versions of both the source and target JDKs.
3636
* A Git-based Java project using Maven or Gradle.
3737
* For Maven-based projects, access to the public Maven Central repository.
38+
* Make sure `chat.extensionTools.enabled` is set to `true` in your {% data variables.product.prodname_vscode %} settings. This setting might be controlled by your organization.
3839

3940
>[!NOTE] For Gradle projects, only wrapper-based builds (Gradle v5+) are supported. Projects using Kotlin DSL are not currently supported.
4041

content/rest/pulls/pulls.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ autogenerated: rest
1616

1717
You can list, view, edit, create, and merge pull requests using the REST API. For information about how to interact with comments on a pull request, see [AUTOTITLE](/rest/issues/comments).
1818

19-
Pull requests are a type of issue. Any actions that are available in both pull requests and issues, like managing assignees, labels, and milestones, are provided by the REST API to manage issues. For more information, see [AUTOTITLE](/rest/issues).
19+
Pull requests are a type of issue. Any actions that are available in both pull requests and issues, like managing assignees, labels, and milestones, are handled by the REST API to manage issues. To perform these actions on pull requests, you must use the issues API endpoints (for example, `/repos/{owner}/{repo}/issues/{issue_number}`), not the pull requests endpoints. For more information, see [AUTOTITLE](/rest/issues).
2020

2121
### Link Relations
2222

src/rest/components/RestCodeSamples.tsx

Lines changed: 4 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -316,14 +316,10 @@ export function RestCodeSamples({ operation, slug, heading }: Props) {
316316
`border-top rounded-1 my-0 ${getLanguageHighlight(selectedLanguage)}`,
317317
)}
318318
data-highlight={getLanguageHighlight(selectedLanguage)}
319+
// eslint-disable-next-line jsx-a11y/no-noninteractive-tabindex
319320
tabIndex={0}
320-
role="scrollbar"
321-
aria-controls="example-request-code"
322-
aria-valuenow={0}
323321
>
324-
<code id="example-request-code" ref={requestCodeExample}>
325-
{displayedExample[selectedLanguage]}
326-
</code>
322+
<code ref={requestCodeExample}>{displayedExample[selectedLanguage]}</code>
327323
</div>
328324
</div>
329325

@@ -378,12 +374,10 @@ export function RestCodeSamples({ operation, slug, heading }: Props) {
378374
)}
379375
data-highlight={'json'}
380376
style={{ maxHeight: responseMaxHeight }}
377+
// eslint-disable-next-line jsx-a11y/no-noninteractive-tabindex
381378
tabIndex={0}
382-
role="scrollbar"
383-
aria-controls="example-response-code"
384-
aria-valuenow={0}
385379
>
386-
<code id="example-response-code" ref={responseCodeExample}>
380+
<code ref={responseCodeExample}>
387381
{selectedResponse === ResponseKeys.example
388382
? displayedExampleResponse
389383
: displayedExampleSchema}

0 commit comments

Comments
 (0)