这是indexloc提供的服务,不要输入任何密码
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
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ Let's compare some aspects of each solution:
| Called directly within a job, not from a step | Run as a step within a job |
| Can contain multiple jobs | Does not contain jobs |
| Each step is logged in real-time | Logged as one step even if it contains multiple steps |
| Can connect a maximum of four levels of workflows | Can be nested to have up to 10 composite actions in one workflow |
| Can connect a maximum of ten levels of workflows | Can be nested to have up to 10 composite actions in one workflow |
| Can use secrets | Cannot use secrets |

## Workflow templates
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -181,7 +181,7 @@ jobs:

## Nesting reusable workflows

You can connect a maximum of four levels of workflows - that is, the top-level caller workflow and up to three levels of reusable workflows. For example: _caller-workflow.yml_ → _called-workflow-1.yml_ → _called-workflow-2.yml_ → _called-workflow-3.yml_. Loops in the workflow tree are not permitted.
You can connect a maximum of ten levels of workflows - that is, the top-level caller workflow and up to nine levels of reusable workflows. For example: _caller-workflow.yml_ → _called-workflow-1.yml_ → _called-workflow-2.yml_ → _called-workflow-3.yml_ → ... → _called-workflow-9.yml_. Loops in the workflow tree are not permitted.

> [!NOTE] Nested reusable workflows require all workflows in the chain to be accessible to the caller, and permissions can only be maintained or reduced—not elevated—throughout the chain. For more information, see [AUTOTITLE](/actions/reference/reusable-workflows-reference#access-and-permissions-for-nested-workflows).

Expand Down
1 change: 0 additions & 1 deletion content/actions/reference/runners/self-hosted-runners.md
Original file line number Diff line number Diff line change
Expand Up @@ -193,7 +193,6 @@ If you have enabled automatic access to {% data variables.product.prodname_dotco
github.com
api.github.com
codeload.github.com
pkg.actions.githubusercontent.com
```

You can use the REST API to get meta information about {% data variables.product.company_short %}, including the IP addresses and domain details for {% data variables.product.company_short %} services. The `actions_inbound` section of the API supports both fully qualified and wildcard domains. Fully qualified domains specify a complete domain name (e.g., `example.github.com`), while wildcard domains use a `*` to represent multiple possible subdomains (e.g., `*.github.com`). An example of the self-hosted runner requirements using wildcard domains has been listed below. For more information, see [AUTOTITLE](/rest/meta/meta).
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -46,8 +46,8 @@ For {% ifversion ghes or ghec %}internal or {% endif %}private repositories, the

### Limitations of reusable workflows

* You can connect up to four levels of workflows. For more information, see [Nesting reusable workflows](/actions/how-tos/sharing-automations/reuse-workflows#nesting-reusable-workflows).
* You can call a maximum of 20 unique reusable workflows from a single workflow file. This limit includes any trees of nested reusable workflows that may be called starting from your top-level caller workflow file.
* You can connect up to ten levels of workflows. For more information, see [Nesting reusable workflows](/actions/how-tos/sharing-automations/reuse-workflows#nesting-reusable-workflows).
* You can call a maximum of 50 unique reusable workflows from a single workflow file. This limit includes any trees of nested reusable workflows that may be called starting from your top-level caller workflow file.

For example, _top-level-caller-workflow.yml_ → _called-workflow-1.yml_ → _called-workflow-2.yml_ counts as 2 reusable workflows.

Expand Down
7 changes: 0 additions & 7 deletions data/reusables/actions/runner-essential-communications.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,13 +10,6 @@ api.github.com

```shell copy
codeload.github.com
pkg.actions.githubusercontent.com
```

**Needed for publishing immutable actions:**

```shell copy
ghcr.io
```

**Needed for uploading/downloading job summaries, logs, workflow artifacts, and caches:**
Expand Down
7 changes: 6 additions & 1 deletion src/search/components/input/AskAIResults.module.scss
Original file line number Diff line number Diff line change
Expand Up @@ -27,10 +27,15 @@ $mutedTextColor: var(--fgColor-muted, var(--color-fg-muted, #656d76));
margin-top: 4px;
margin-bottom: 16px;
padding: $bodyPadding;
ul,
ul {
list-style-type: disc !important;
padding-inline-start: 2em !important;
margin-bottom: 16px;
}
ol {
list-style-type: decimal !important;
padding-inline-start: 2em !important;
margin-bottom: 16px;
}
}

Expand Down
Loading