Skip to content

Commit effd62f

Browse files
authored
Merge branch 'main' into patch-2
2 parents ef41ed0 + ecf2bfe commit effd62f

File tree

1,203 files changed

+23449
-11023
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

1,203 files changed

+23449
-11023
lines changed
Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
{
2+
"name": "test",
3+
4+
"settings": {
5+
"terminal.integrated.shell.linux": "/bin/zsh",
6+
},
7+
8+
// Visual Studio Code extensions which help authoring for docs.github.com.
9+
"extensions": [
10+
"dbaeumer.vscode-eslint",
11+
"sissel.shopify-liquid"
12+
],
13+
14+
// Use 'forwardPorts' to make a list of ports inside the container available locally.
15+
"forwardPorts": [5000],
16+
17+
// Use 'postCreateCommand' to run commands after the container is created.
18+
"postCreateCommand": "echo test > aaa-TEST.txt"
19+
20+
}

.github/workflows/needs-sme-workflow.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,6 @@ jobs:
2626
Thanks for opening an issue! We've triaged this issue for technical review by a subject matter expert :eyes:
2727
- uses: peter-evans/create-or-update-comment@a35cf36e5301d70b76f316e867e7788a55a31dae
2828
with:
29-
issue-number: ${{ github.event.pull_request.number }}
29+
issue-number: ${{ github.event.pull_request_target.number }}
3030
body: |
3131
Thanks for opening a pull request! We've triaged this issue for technical review by a subject matter expert :eyes:

.github/workflows/optimize-images.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,8 @@ permissions:
1616

1717
jobs:
1818
optimize-images-on-pr:
19-
if: github.repository == 'github/docs-internal' || github.repository == 'github/docs'
19+
# We can't make commits on forks
20+
if: github.repository == 'github/docs-internal'
2021
runs-on: ubuntu-latest
2122
steps:
2223
- name: Check out repo on head ref

.github/workflows/triage-stale-check.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
stale-issue-message: 'A stale label has been added to this issue becuase it has been open for 60 days with no activity. To keep this issue open, add a comment within 3 days.'
2525
days-before-issue-stale: 60
2626
days-before-issue-close: 3
27-
exempt-issue-labels: 'help wanted,waiting for review'
27+
exempt-issue-labels: 'help wanted,never-stale,waiting for review'
2828
stale-pr-message: 'A stale label has been added to this pull request because it has been open 7 days with no activity. To keep this PR open, add a comment or push a commit within 3 days.'
2929
days-before-pr-stale: 7
3030
days-before-pr-close: 3

.vscode/settings.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,5 +3,5 @@
33
"**/translations": true
44
},
55
"workbench.editor.enablePreview": false,
6-
"workbench.editor.enablePreviewFromQuickOpen": false
6+
"workbench.editor.enablePreviewFromQuickOpen": false
77
}
28 KB
-6.76 KB
7.03 KB

codespaces-settings.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
"isInternal": true

components/rest/RestReferencePage.tsx

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -127,7 +127,13 @@ export const RestReferencePage = ({
127127
as="li"
128128
key={item.contents}
129129
className={item.platform}
130-
sx={{ listStyle: 'none', padding: '2px' }}
130+
sx={{
131+
listStyle: 'none',
132+
padding: '2px',
133+
':hover': {
134+
bg: 'var(--color-canvas-inset)',
135+
},
136+
}}
131137
>
132138
<div className={cx('lh-condensed d-block width-full')}>
133139
<div className="d-inline-flex" dangerouslySetInnerHTML={{ __html: item.contents }} />

components/ui/MarkdownContent/MarkdownContent.module.scss

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@
66
.markdownBody {
77
a {
88
text-decoration: underline;
9+
text-underline-offset: 25%;
910
}
1011

1112
summary {

components/ui/MiniTocs/MiniTocs.tsx

Lines changed: 12 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,18 @@ const renderTocItem = (item: MiniTocItem) => {
1616
as="li"
1717
key={item.contents}
1818
className={item.platform}
19-
sx={{ listStyle: 'none', padding: '2px' }}
19+
sx={{
20+
listStyle: 'none',
21+
padding: '2px',
22+
':hover': {
23+
bg: 'var(--color-canvas-inset)',
24+
},
25+
'ul > li': {
26+
':hover': {
27+
bg: 'var(--color-neutral-subtle)',
28+
},
29+
},
30+
}}
2031
>
2132
<div className={cx('lh-condensed d-block width-full')}>
2233
<div dangerouslySetInnerHTML={{ __html: item.contents }} />

content/account-and-profile/setting-up-and-managing-your-github-user-account/managing-your-membership-in-organizations/viewing-peoples-roles-in-an-organization.md

Lines changed: 2 additions & 2 deletions

content/actions/automating-builds-and-tests/building-and-testing-java-with-gradle.md

Lines changed: 3 additions & 3 deletions

content/actions/deployment/targeting-different-environments/using-environments-for-deployment.md

Lines changed: 8 additions & 0 deletions

content/actions/hosting-your-own-runners/about-self-hosted-runners.md

Lines changed: 0 additions & 1 deletion

content/actions/hosting-your-own-runners/autoscaling-with-self-hosted-runners.md

Lines changed: 2 additions & 2 deletions

content/actions/publishing-packages/publishing-java-packages-with-gradle.md

Lines changed: 3 additions & 3 deletions

content/actions/security-guides/security-hardening-for-github-actions.md

Lines changed: 8 additions & 1 deletion

content/actions/using-containerized-services/about-service-containers.md

Lines changed: 2 additions & 2 deletions

content/actions/using-github-hosted-runners/about-github-hosted-runners.md

Lines changed: 0 additions & 1 deletion

content/actions/using-workflows/caching-dependencies-to-speed-up-workflows.md

Lines changed: 10 additions & 1 deletion

content/actions/using-workflows/events-that-trigger-workflows.md

Lines changed: 6 additions & 0 deletions

content/admin/configuration/configuring-your-enterprise/command-line-utilities.md

Lines changed: 1 addition & 1 deletion

content/admin/configuration/configuring-your-enterprise/enabling-and-scheduling-maintenance-mode.md

Lines changed: 1 addition & 1 deletion

content/admin/configuration/configuring-your-enterprise/site-admin-dashboard.md

Lines changed: 2 additions & 2 deletions

content/admin/enterprise-management/index.md

Lines changed: 1 addition & 1 deletion

0 commit comments

Comments
 (0)