Skip to content

Commit e898e03

Browse files
authored
Merge branch 'main' into repo-sync
2 parents bd35eac + d6806e8 commit e898e03

File tree

35 files changed

+264
-47
lines changed

35 files changed

+264
-47
lines changed
47.8 KB
Loading
16.8 KB
Loading
35.4 KB
Loading

components/rest/RestReferencePage.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@ export const RestReferencePage = ({
9898
// Note! This "core selector", which determines whether to bother
9999
// or not, needs to match what's used inside ClientSideHighlightJS.tsx
100100
if (document.querySelector('[data-highlight]')) {
101-
setLazyLoadHighlightJS(true)
101+
setLazyLoadHighlightJS(false)
102102
}
103103

104104
// Important to depend on the current path because the first page you

components/sidebar/SidebarProduct.tsx

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,6 @@ import { Link } from 'components/Link'
88
import { ProductTreeNode, useMainContext } from 'components/context/MainContext'
99
import { AllProductsLink } from 'components/sidebar/AllProductsLink'
1010
import { EventType, sendEvent } from 'components/lib/events'
11-
1211
import styles from './SidebarProduct.module.scss'
1312

1413
export const SidebarProduct = () => {
@@ -154,7 +153,7 @@ const CollapsibleSection = (props: SectionProps) => {
154153
<details open={defaultOpen} onToggle={onToggle} className="details-reset">
155154
<summary className="outline-none">
156155
<div className="d-flex flex-justify-between">
157-
<div className="pl-4 pr-1 py-2 f6 text-uppercase d-block flex-auto mr-3 color-fg-default no-underline text-bold">
156+
<div className="pl-4 pr-1 py-2 f5 d-block flex-auto mr-3 color-fg-default no-underline text-bold">
158157
{title}
159158
</div>
160159
<span style={{ marginTop: 7 }} className="flex-shrink-0 pr-3">

content/actions/deployment/about-deployments/index.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,8 @@ shortTitle: About deployments
44
intro: 'Learn how deployments can run with {% data variables.product.prodname_actions %} workflows.'
55
versions:
66
fpt: '*'
7-
ghae: issue-4856
7+
ghes: '*'
8+
ghae: '*'
89
ghec: '*'
910
children:
1011
- /about-continuous-deployment

content/actions/deployment/deploying-xcode-applications/index.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,8 @@ shortTitle: Deploying Xcode applications
44
intro: 'You can sign Xcode apps within your continuous integration (CI) workflow by installing an Apple code signing certificate on {% data variables.product.prodname_actions %} runners.'
55
versions:
66
fpt: '*'
7-
ghae: issue-4856
7+
ghes: '*'
8+
ghae: '*'
89
ghec: '*'
910
children:
1011
- /installing-an-apple-certificate-on-macos-runners-for-xcode-development

content/actions/deployment/managing-your-deployments/index.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,8 @@ shortTitle: Managing your deployments
44
intro: You can review the past activity of your deployments.
55
versions:
66
fpt: '*'
7-
ghae: issue-4856
7+
ghes: '*'
8+
ghae: '*'
89
ghec: '*'
910
children:
1011
- /viewing-deployment-history

content/actions/deployment/targeting-different-environments/index.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,8 @@ shortTitle: Targeting different environments
44
intro: You can configure environments with protection rules and secrets. A workflow job that references an environment must follow any protection rules for the environment before running or accessing the environment's secrets.
55
versions:
66
fpt: '*'
7-
ghae: issue-4856
7+
ghes: '*'
8+
ghae: '*'
89
ghec: '*'
910
children:
1011
- /using-environments-for-deployment

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

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,8 @@ For more information about installing and using self-hosted runners, see "[Addin
5151
- Can use cloud services or local machines that you already pay for.
5252
- Are customizable to your hardware, operating system, software, and security requirements.
5353
- Don't need to have a clean instance for every job execution.
54-
- Are free to use with {% data variables.product.prodname_actions %}, but you are responsible for the cost of maintaining your runner machines.
54+
- Are free to use with {% data variables.product.prodname_actions %}, but you are responsible for the cost of maintaining your runner machines.{% ifversion ghec or ghes or ghae %}
55+
- Can be organized into groups to restrict access to specific {% if restrict-groups-to-workflows %}workflows, {% endif %}organizations and repositories. For more information, see "[Managing access to self-hosted runners using groups](/actions/hosting-your-own-runners/managing-access-to-self-hosted-runners-using-groups)."{% endif %}
5556

5657
## Requirements for self-hosted runner machines
5758

0 commit comments

Comments
 (0)