Skip to content

Commit df9f959

Browse files
authored
Merge pull request #58012 from github/repo-sync
Repo sync
2 parents db8ac67 + 97ba664 commit df9f959

File tree

3 files changed

+2
-4
lines changed

3 files changed

+2
-4
lines changed

content/actions/how-tos/write-workflows/choose-when-workflows-run/control-jobs-with-conditions.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ name: example-workflow
2323
on: [push]
2424
jobs:
2525
production-deploy:
26-
if: github.repository == 'octo-org/octo-repo-prod'
26+
if: ${{ github.repository == 'octo-org/octo-repo-prod' }}
2727
runs-on: ubuntu-latest
2828
steps:
2929
- uses: {% data reusables.actions.action-checkout %}

content/actions/reference/workflows-and-actions/workflow-syntax.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1002,8 +1002,6 @@ All `include` combinations are processed after `exclude`. This allows you to use
10021002

10031003
## `jobs.<job_id>.strategy.fail-fast`
10041004

1005-
`jobs.<job_id>.strategy.fail-fast` applies to the entire matrix. If `jobs.<job_id>.strategy.fail-fast` is set to `true` or its expression evaluates to `true`, {% data variables.product.github %} will cancel all in-progress and queued jobs in the matrix if any job in the matrix fails. This property defaults to `true`.
1006-
10071005
{% data reusables.actions.jobs.section-using-a-build-matrix-for-your-jobs-failfast %}
10081006

10091007
## `jobs.<job_id>.strategy.max-parallel`

content/code-security/getting-started/quickstart-for-securing-your-repository.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ Dependency review lets you visualize dependency changes in pull requests before
7777

7878
Dependency review is a {% data variables.product.prodname_GH_code_security %} feature. {% ifversion fpt or ghec %}Dependency review is enabled for all repositories with the dependency graph enabled. Organizations that use {% data variables.product.prodname_team %} or {% data variables.product.prodname_ghe_cloud %} with {% data variables.product.prodname_GH_code_security %} can additionally enable dependency review for private and internal repositories.{% endif %}
7979

80-
To enable dependency review for a repository, ensure that the dependency graph is enabled and enable {% data variables.product.prodname_GH_code_security %}.
80+
To enable dependency review for a repository, ensure that the dependency graph is enabled.
8181

8282
1. From the main page of your repository, click **{% octicon "gear" aria-hidden="true" aria-label="gear" %} Settings**.
8383
1. Click **{% data variables.product.UI_advanced_security %}**.{% ifversion fpt or ghec %}

0 commit comments

Comments
 (0)