Skip to content

Commit a4c2cdf

Browse files
authored
Merge pull request #41123 from github/repo-sync
Repo sync
2 parents 5be2981 + 5bfa176 commit a4c2cdf

File tree

6 files changed

+10
-13
lines changed

6 files changed

+10
-13
lines changed

content/actions/concepts/workflows-and-actions/reusing-workflow-configurations.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ Let's compare some aspects of each solution:
5656
| Called directly within a job, not from a step | Run as a step within a job |
5757
| Can contain multiple jobs | Does not contain jobs |
5858
| Each step is logged in real-time | Logged as one step even if it contains multiple steps |
59-
| Can connect a maximum of four levels of workflows | Can be nested to have up to 10 composite actions in one workflow |
59+
| Can connect a maximum of ten levels of workflows | Can be nested to have up to 10 composite actions in one workflow |
6060
| Can use secrets | Cannot use secrets |
6161

6262
## Workflow templates

content/actions/how-tos/reuse-automations/reuse-workflows.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -181,7 +181,7 @@ jobs:
181181

182182
## Nesting reusable workflows
183183

184-
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.
184+
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.
185185

186186
> [!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).
187187

content/actions/reference/runners/self-hosted-runners.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -193,7 +193,6 @@ If you have enabled automatic access to {% data variables.product.prodname_dotco
193193
github.com
194194
api.github.com
195195
codeload.github.com
196-
pkg.actions.githubusercontent.com
197196
```
198197

199198
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).

content/actions/reference/workflows-and-actions/reusing-workflow-configurations.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -46,8 +46,8 @@ For {% ifversion ghes or ghec %}internal or {% endif %}private repositories, the
4646

4747
### Limitations of reusable workflows
4848

49-
* 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).
50-
* 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.
49+
* 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).
50+
* 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.
5151

5252
For example, _top-level-caller-workflow.yml__called-workflow-1.yml__called-workflow-2.yml_ counts as 2 reusable workflows.
5353

data/reusables/actions/runner-essential-communications.md

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -10,13 +10,6 @@ api.github.com
1010

1111
```shell copy
1212
codeload.github.com
13-
pkg.actions.githubusercontent.com
14-
```
15-
16-
**Needed for publishing immutable actions:**
17-
18-
```shell copy
19-
ghcr.io
2013
```
2114

2215
**Needed for uploading/downloading job summaries, logs, workflow artifacts, and caches:**

src/search/components/input/AskAIResults.module.scss

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,10 +27,15 @@ $mutedTextColor: var(--fgColor-muted, var(--color-fg-muted, #656d76));
2727
margin-top: 4px;
2828
margin-bottom: 16px;
2929
padding: $bodyPadding;
30-
ul,
30+
ul {
31+
list-style-type: disc !important;
32+
padding-inline-start: 2em !important;
33+
margin-bottom: 16px;
34+
}
3135
ol {
3236
list-style-type: decimal !important;
3337
padding-inline-start: 2em !important;
38+
margin-bottom: 16px;
3439
}
3540
}
3641

0 commit comments

Comments
 (0)